home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / editors / emacs / xemacs / xemacs-1.006 / xemacs-1 / lib / xemacs-19.13 / lisp / eos / loaddefs-eos.el < prev    next >
Encoding:
Text File  |  1995-08-31  |  324.8 KB  |  7,804 lines

  1. ;;; loaddefs.el --- define standard autoloads of other files
  2.  
  3. ;; Copyright (C) 1985, 1986, 1987, 1992-1995 Free Software Foundation, Inc.
  4.  
  5. ;; Maintainer: XEmacs
  6. ;; Keywords: internal
  7.  
  8. ;; This file is part of XEmacs.
  9.  
  10. ;; XEmacs is free software; you can redistribute it and/or modify it
  11. ;; under the terms of the GNU General Public License as published by
  12. ;; the Free Software Foundation; either version 2, or (at your option)
  13. ;; any later version.
  14.  
  15. ;; XEmacs is distributed in the hope that it will be useful, but
  16. ;; WITHOUT ANY WARRANTY; without even the implied warranty of
  17. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  18. ;; General Public License for more details.
  19.  
  20. ;; You should have received a copy of the GNU General Public License
  21. ;; along with XEmacs; see the file COPYING.  If not, write to the Free
  22. ;; Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  
  24. ;;; Commentary:
  25.  
  26. ;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  27. ;;; Special formatting conventions are used in this file!
  28. ;;;
  29. ;;; a backslash-newline is used at the beginning of a documentation string
  30. ;;; when that string should be stored in the file lib-src/DOCnnn, not in core.
  31. ;;;
  32. ;;; Such strings read into Lisp as numbers (during the pure-loading phase).
  33. ;;;
  34. ;;; But you must obey certain rules to make sure the string is understood
  35. ;;; and goes into lib-src/DOCnnn properly.  Otherwise, the string will not go
  36. ;;; anywhere!
  37. ;;;
  38. ;;; The doc string must appear in the standard place in a call to
  39. ;;; defun, autoload, defvar or defconst.  No Lisp macros are recognized.
  40. ;;; The open-paren starting the definition must appear in column 0.
  41. ;;;
  42. ;;; In defvar and defconst, there is an additional rule:
  43. ;;; The double-quote that starts the string must be on the same
  44. ;;; line as the defvar or defconst.
  45. ;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  46.  
  47. ;;; **********************************************************************
  48. ;;; You should never need to write autoloads by hand and put them here.
  49. ;;;
  50. ;;; It is no longer necessary.  Instead use autoload.el to maintain them
  51. ;;; for you.  Just insert ";;;###autoload" before defuns or defmacros you
  52. ;;; want to be autoloaded, or other forms you want copied into loaddefs.el
  53. ;;; (defvars, key definitions, etc.).  For example, 
  54. ;;;    ;;;###autoload
  55. ;;;    (defun foobar () ....)
  56. ;;;    ;;;###autoload (define-key global-map "f" 'foobar)
  57. ;;;    ;;;###autoload
  58. ;;;    (defvar foobar-var nil "\
  59. ;;;    This is foobar-var's doc-string.")
  60. ;;;
  61. ;;; Then do M-x update-file-autoloads on the file to update loaddefs.el.
  62. ;;;
  63. ;;; You can also use M-x update-directory-autoloads to update the autoloads
  64. ;;; in loaddefs.el for all .el files in the lisp/ directory, or M-x
  65. ;;; update-autoloads-here to update the autoloads for each file that
  66. ;;; already has an autoload section in this file.
  67. ;;; **********************************************************************
  68.  
  69. ;;; Code:
  70.  
  71. ;;; This code was NOT generated by autoload.el.
  72.  
  73. (defconst modeline-buffer-identification (purecopy '("XEmacs: %17b")) "\
  74. Modeline control for identifying the buffer being displayed.
  75. Its default value is \"XEmacs: %17b\".  Major modes that edit things
  76. other than ordinary files may change this (e.g. Info, Dired,...)")
  77. (make-variable-buffer-local 'modeline-buffer-identification)
  78.  
  79. (defconst modeline-process nil "\
  80. Modeline control for displaying info on process status.
  81. Normally nil in most modes, since there is no process to display.")
  82. (make-variable-buffer-local 'modeline-process)
  83.  
  84. (defconst modeline-modified (purecopy '("--%1*%1+-")) "\
  85. Modeline control for displaying whether current buffer is modified.")
  86. (make-variable-buffer-local 'modeline-modified)
  87.  
  88. (setq-default modeline-format
  89.   (list (purecopy "")
  90.    'modeline-modified
  91.    'modeline-buffer-identification
  92.    (purecopy "   ")
  93.    'global-mode-string
  94.    (purecopy "   %[(")
  95.    'mode-name 'minor-mode-alist "%n" 'modeline-process
  96.    (purecopy ")%]----")
  97.    (purecopy '(line-number-mode "L%l--"))
  98.    (purecopy '(-3 . "%p"))
  99.    (purecopy "-%-")))
  100.  
  101. (defvar minor-mode-alist nil "\
  102. Alist saying how to show minor modes in the modeline.
  103. Each element looks like (VARIABLE STRING);
  104. STRING is included in the modeline iff VARIABLE's value is non-nil.
  105.  
  106. Actually, STRING need not be a string; any possible modeline element
  107. is okay.  See `modeline-format'.")
  108. (setq minor-mode-alist (mapcar 'purecopy
  109.                    '((abbrev-mode " Abbrev")
  110.                  (overwrite-mode overwrite-mode)
  111.                  (auto-fill-function " Fill")
  112.                  ;; not really a minor mode...
  113.                  (defining-kbd-macro " Def"))))
  114.  
  115. ;; These variables are used by autoloadable packages.
  116. ;; They are defined here so that they do not get overridden
  117. ;; by the loading of those packages.
  118.  
  119. ;; Names in directory that end in one of these
  120. ;; are ignored in completion,
  121. ;; making it more likely you will get a unique match.
  122. (setq completion-ignored-extensions
  123.       (mapcar 'purecopy
  124.           (if (eq system-type 'vax-vms)
  125.           '(".obj" ".elc" ".exe" ".bin" ".lbin" ".sbin"
  126.             ".dvi" ".toc" ".log" ".aux"
  127.             ".lof" ".brn" ".rnt" ".mem" ".lni" ".lis"
  128.             ".olb" ".tlb" ".mlb" ".hlb" ".glo" ".idx" ".lot" ".fmt")
  129.         '(".o" ".elc" "~" ".bin" ".lbin" ".fasl"
  130.           ".dvi" ".toc" ".log" ".aux" ".a" ".ln"
  131.           ".lof" ".blg" ".bbl" ".glo" ".idx" ".lot" ".fmt"
  132.           ".diff" ".oi"))))
  133.  
  134. (make-variable-buffer-local 'indent-tabs-mode)
  135.  
  136. ;;; This code also was not generated by autoload.el, because VM goes out
  137. ;;; of its way to be perverse.
  138.  
  139. (autoload 'vm "vm"
  140.    "\
  141. View Mail: an alternate mail reader for emacs.
  142. Optional first arg FOLDER specifies the folder to visit.  It defaults
  143. to the value of vm-primary-inbox.  The folder buffer is put into VM
  144. mode, a major mode for reading mail.
  145.  
  146. Prefix arg or optional second arg READ-ONLY non-nil indicates
  147. that the folder should be considered read only.  No attribute
  148. changes, messages additions or deletions will be allowed in the
  149. visited folder.
  150.  
  151. Visiting the primary inbox causes any contents of the system mailbox to
  152. be moved and appended to the resulting buffer.
  153.  
  154. All the messages can be read by repeatedly pressing SPC.  Use `n'ext and
  155. `p'revious to move about in the folder.  Messages are marked for
  156. deletion with `d', and saved to another folder with `s'.  Quitting VM
  157. with `q' expunges deleted messages and saves the buffered folder to
  158. disk.
  159.  
  160. See the documentation for vm-mode for more information."
  161.  t)
  162.  
  163. (autoload 'vm-mode "vm" 
  164.   "\
  165. View Mail: an alternate mail reader for emacs.
  166.  
  167. Commands:
  168.    h - summarize folder contents
  169.    j - discard cached information about the current message
  170.  
  171.    n - go to next message
  172.    p - go to previous message
  173.    N - like `n' but ignores skip-variable settings
  174.    P - like `p' but ignores skip-variable settings
  175.  M-n - go to next unread message
  176.  M-p - go to previous unread message
  177.  RET - go to numbered message (uses prefix arg or prompts in minibuffer)
  178.  TAB - go to last message seen
  179.  M-s - incremental search through the folder
  180.  
  181.    t - display hidden headers
  182.  SPC - scroll forward a page (if at end of message, then display next message)
  183.    b - scroll backward a page
  184.    < - go to beginning of current message
  185.    > - go to end of current message
  186.  
  187.    d - delete message, prefix arg deletes messages forward (flag as deleted)
  188.  C-d - delete message, prefix arg deletes messages backward (flag as deleted)
  189.    u - undelete
  190.    k - flag for deletion all messages with same subject as the current message
  191.  
  192.    r - reply (only to the sender of the message)
  193.    R - reply with included text for current message
  194.  M-r - extract and resend bounced message
  195.    f - followup (reply to all recipients of message)
  196.    F - followup with included text from the current message
  197.    z - forward the current message
  198.    m - send a message
  199.    B - resend the current message to another user.
  200.    c - continue composing the most recent message you were composing
  201.  
  202.    @ - digestify and mail entire folder contents (the folder is not modified)
  203.    * - burst a digest into individual messages, and append and assimilate these
  204.        message into the current folder.
  205.  
  206.    G - sort messages by various keys
  207.  
  208.    g - get any new mail that has arrived in the system mailbox
  209.        (new mail is appended to the disk and buffer copies of the
  210.        primary inbox.)
  211.    v - visit another mail folder
  212.    V - visit a virtual folder
  213.  
  214.    e - edit the current message
  215.  
  216.    s - save current message in a folder (appends if folder already exists)
  217.    w - write current message to a file without its headers (appends if exists)
  218.    S - save entire folder to disk, expunging deleted messages
  219.    A - save unfiled messages to their vm-auto-folder-alist specified folders
  220.    # - expunge deleted messages (without saving folder)
  221.    q - quit VM, deleted messages are expunged, folder saved to disk
  222.    x - exit VM with no change to the folder
  223.  
  224.  M N - use marks; the next vm command will affect only marked messages
  225.        if it makes sense for the command to do so
  226.  
  227.        M M - mark the current message
  228.        M U - unmark the current message
  229.        M m - mark all messages
  230.        M u - unmark all messages
  231.        M ? - help for the mark commands
  232.  
  233.  W S - save the current window configuration to a name
  234.  W D - delete a window configuration
  235.  W W - apply a configuration
  236.  W ? - help for the window configuration commands
  237.  
  238.  C-_ - undo, special undo that retracts the most recent
  239.              changes in message attributes.  Expunges and saves
  240.              cannot be undone.  C-x u is also bound to this
  241.              command.
  242.  
  243.    L - reload your VM init file, ~/.vm
  244.  
  245.    ? - help
  246.  
  247.    ! - run a shell command
  248.    | - run a shell command with the current message as input
  249.  
  250.  M-C - view conditions under which you may redistribute VM
  251.  M-W - view the details of VM's lack of a warranty
  252.  
  253. Variables:
  254.    vm-auto-center-summary
  255.    vm-auto-folder-alist
  256.    vm-auto-folder-case-fold-search
  257.    vm-auto-get-new-mail
  258.    vm-auto-next-message
  259.    vm-berkeley-mail-compatibility
  260.    vm-check-folder-types
  261.    vm-convert-folder-types
  262.    vm-circular-folders
  263.    vm-confirm-new-folders
  264.    vm-confirm-quit
  265.    vm-crash-box
  266.    vm-delete-after-archiving
  267.    vm-delete-after-bursting
  268.    vm-delete-after-saving
  269.    vm-delete-empty-folders
  270.    vm-digest-burst-type
  271.    vm-digest-center-preamble
  272.    vm-digest-preamble-format
  273.    vm-digest-send-type
  274.    vm-folder-directory
  275.    vm-folder-read-only
  276.    vm-follow-summary-cursor
  277.    vm-forwarded-headers
  278.    vm-forwarding-digest-type
  279.    vm-forwarding-subject-format
  280.    vm-gargle-uucp
  281.    vm-highlighted-header-regexp
  282.    vm-honor-page-delimiters
  283.    vm-in-reply-to-format
  284.    vm-included-text-attribution-format
  285.    vm-included-text-prefix
  286.    vm-inhibit-startup-message
  287.    vm-invisible-header-regexp
  288.    vm-jump-to-new-messages
  289.    vm-jump-to-unread-messages
  290.    vm-keep-sent-messages
  291.    vm-mail-header-from
  292.    vm-mail-mode-hook
  293.    vm-mail-window-percentage
  294.    vm-mode-hook
  295.    vm-move-after-deleting
  296.    vm-move-after-undeleting
  297.    vm-mutable-windows
  298.    vm-preview-lines
  299.    vm-preview-read-messages
  300.    vm-primary-inbox
  301.    vm-recognize-pop-maildrops
  302.    vm-reply-ignored-addresses
  303.    vm-reply-subject-prefix
  304.    vm-resend-bounced-headers
  305.    vm-resend-bounced-discard-header-regexp
  306.    vm-resend-headers
  307.    vm-resend-discard-header-regexp
  308.    vm-retain-message-order
  309.    vm-rfc1153-digest-discard-header-regexp
  310.    vm-rfc1153-digest-headers
  311.    vm-rfc934-digest-discard-header-regexp
  312.    vm-rfc934-digest-headers
  313.    vm-search-using-regexps
  314.    vm-skip-deleted-messages
  315.    vm-skip-read-messages
  316.    vm-spool-files
  317.    vm-startup-with-summary
  318.    vm-strip-reply-headers
  319.    vm-summary-format
  320.    vm-unforwarded-header-regexp
  321.    vm-virtual-folder-alist
  322.    vm-virtual-mirror
  323.    vm-visible-headers
  324.    vm-visit-when-saving
  325.    vm-window-configuration-file
  326. "
  327.  t)
  328.  
  329. (autoload 'vm-visit-folder "vm" 
  330.   "\
  331. Visit a mail file with View Mail, an alternate mail reader for emacs.
  332. See the description of the `vm' and `vm-mode' functions.
  333.  
  334. VM will parse and present its messages to you in the usual way.
  335.  
  336. First arg FOLDER specifies the mail file to visit.  When this
  337. command is called interactively the file name is read from the
  338. minibuffer.
  339.  
  340. Prefix arg or optional second arg READ-ONLY non-nil indicates
  341. that the folder should be considered read only.  No attribute
  342. changes, messages additions or deletions will be allowed in the
  343. visited folder."
  344.   t)
  345.  
  346. (autoload 'vm-mail "vm"
  347.   "\
  348. Send a mail message from within View Mail, or from without."
  349.   t)
  350.  
  351. ;; eiffel3.el is written in a way which causes update-file-autoloads
  352. ;; to fail so we add it manually
  353. (autoload 'eiffel-mode "eiffel3" "\
  354. Major Mode for editing Eiffel programs." t nil)
  355.  
  356.  
  357.  
  358. ;;; Generated autoloads follow (made by autoload.el).
  359.  
  360. ;;; To sort them, execute the following after narrowing
  361. ;;; to a region starting just after the following formfeed (control-l)
  362. ;;; and ending just after the last formfeed in the file.
  363.  
  364. ;;;(sort-regexp-fields nil "\n*.*\n.*from \\(.*\\)[^ ]* " "\\1"
  365. ;;;            (point-min) (point-max))
  366.  
  367. ;;;### (autoloads (batch-byte-recompile-directory batch-byte-recompile-directory-norecurse batch-byte-compile byte-compile-sexp byte-compile compile-defun byte-compile-buffer byte-compile-and-load-file byte-compile-file byte-recompile-file byte-recompile-directory) "bytecomp" "bytecomp/bytecomp.el" (12341 148))
  368. ;;; Generated autoloads from bytecomp/bytecomp.el
  369.  
  370. (autoload 'byte-recompile-directory "bytecomp" "\
  371. Recompile every `.el' file in DIRECTORY that needs recompilation.
  372. This is if a `.elc' file exists but is older than the `.el' file.
  373.  
  374. If the `.elc' file does not exist, normally the `.el' file is *not* compiled.
  375. But a prefix argument (optional second arg) means ask user,
  376. for each such `.el' file, whether to compile it.  Prefix argument 0 means
  377. don't ask and compile the file anyway." t nil)
  378.  
  379. (autoload 'byte-recompile-file "bytecomp" "\
  380. Recompile a file of Lisp code named FILENAME if it needs recompilation.
  381. This is if the `.elc' file exists but is older than the `.el' file.
  382.  
  383. If the `.elc' file does not exist, normally the `.el' file is *not*
  384. compiled.  But a prefix argument (optional second arg) means ask user
  385. whether to compile it.  Prefix argument 0 don't ask and recompile anyway." t nil)
  386.  
  387. (autoload 'byte-compile-file "bytecomp" "\
  388. Compile a file of Lisp code named FILENAME into a file of byte code.
  389. The output file's name is made by appending `c' to the end of FILENAME.
  390. With prefix arg (noninteractively: 2nd arg), load the file after compiling." t nil)
  391.  
  392. (autoload 'byte-compile-and-load-file "bytecomp" "\
  393. Compile a file of Lisp code named FILENAME into a file of byte code,
  394. and then load it.  The output file's name is made by appending \"c\" to 
  395. the end of FILENAME." t nil)
  396.  
  397. (autoload 'byte-compile-buffer "bytecomp" "\
  398. Byte-compile and evaluate contents of BUFFER (default: the current buffer)." t nil)
  399.  
  400. (autoload 'compile-defun "bytecomp" "\
  401. Compile and evaluate the current top-level form.
  402. Print the result in the minibuffer.
  403. With argument, insert value in current buffer after the form." t nil)
  404.  
  405. (autoload 'byte-compile "bytecomp" "\
  406. If FORM is a symbol, byte-compile its function definition.
  407. If FORM is a lambda or a macro, byte-compile it as a function." nil nil)
  408.  
  409. (autoload 'byte-compile-sexp "bytecomp" "\
  410. Compile and return SEXP." nil nil)
  411.  
  412. (autoload 'batch-byte-compile "bytecomp" "\
  413. Run `byte-compile-file' on the files remaining on the command line.
  414. Use this from the command line, with `-batch';
  415. it won't work in an interactive Emacs.
  416. Each file is processed even if an error occurred previously.
  417. For example, invoke \"emacs -batch -f batch-byte-compile $emacs/ ~/*.el\"" nil nil)
  418.  
  419. (autoload 'batch-byte-recompile-directory-norecurse "bytecomp" "\
  420. Same as `batch-byte-recompile-directory' but without recursion." nil nil)
  421.  
  422. (autoload 'batch-byte-recompile-directory "bytecomp" "\
  423. Runs `byte-recompile-directory' on the dirs remaining on the command line.
  424. Must be used only with -batch, and kills emacs on completion.
  425. For example, invoke \"emacs -batch -f batch-byte-recompile-directory .\"" nil nil)
  426.  
  427. ;;;***
  428.  
  429. ;;;### (autoloads (disassemble) "disass" "bytecomp/disass.el" (12147 26365))
  430. ;;; Generated autoloads from bytecomp/disass.el
  431.  
  432. (autoload 'disassemble "disass" "\
  433. Print disassembled code for OBJECT in (optional) BUFFER.
  434. OBJECT can be a symbol defined as a function, or a function itself
  435. \(a lambda expression or a compiled-function object).
  436. If OBJECT is not already compiled, we compile it, but do not
  437. redefine OBJECT if it is a symbol." t nil)
  438.  
  439. ;;;***
  440.  
  441. ;;;### (autoloads nil "cal-x" "calendar/cal-x.el" (12247 39168))
  442. ;;; Generated autoloads from calendar/cal-x.el
  443.  
  444. (defvar calendar-setup 'one-frame "\
  445. The frame set up of the calendar.
  446. The choices are `one-frame' (calendar and diary together in one separate,
  447. dediciated frame) or `two-frames' (calendar and diary in separate, dedicated
  448. frames); with any other value the current frame is used.")
  449.  
  450. ;;;***
  451.  
  452. ;;;### (autoloads (list-yahrzeit-dates calendar) "calendar" "calendar/calendar.el" (12356 62982))
  453. ;;; Generated autoloads from calendar/calendar.el
  454.  
  455. (defvar calendar-week-start-day 0 "\
  456. *The day of the week on which a week in the calendar begins.
  457. 0 means Sunday (default), 1 means Monday, and so on.")
  458.  
  459. (defvar calendar-offset 0 "\
  460. *The offset of the principal month from the center of the calendar window.
  461. 0 means the principal month is in the center (default), -1 means on the left,
  462. +1 means on the right.  Larger (or smaller) values push the principal month off
  463. the screen.")
  464.  
  465. (defvar view-diary-entries-initially nil "\
  466. *Non-nil means display current date's diary entries on entry.
  467. The diary is displayed in another window when the calendar is first displayed,
  468. if the current date is visible.  The number of days of diary entries displayed
  469. is governed by the variable `number-of-diary-entries'.")
  470.  
  471. (defvar number-of-diary-entries 1 "\
  472. *Specifies how many days of diary entries are to be displayed initially.
  473. This variable affects the diary display when the command M-x diary is used,
  474. or if the value of the variable `view-diary-entries-initially' is t.  For
  475. example, if the default value 1 is used, then only the current day's diary
  476. entries will be displayed.  If the value 2 is used, then both the current
  477. day's and the next day's entries will be displayed.
  478.  
  479. The value can also be a vector such as [0 2 2 2 2 4 1]; this value
  480. says to display no diary entries on Sunday, the display the entries
  481. for the current date and the day after on Monday through Thursday,
  482. display Friday through Monday's entries on Friday, and display only
  483. Saturday's entries on Saturday.
  484.  
  485. This variable does not affect the diary display with the `d' command
  486. from the calendar; in that case, the prefix argument controls the
  487. number of days of diary entries displayed.")
  488.  
  489. (defvar mark-diary-entries-in-calendar nil "\
  490. *Non-nil means mark dates with diary entries, in the calendar window.
  491. The marking symbol is specified by the variable `diary-entry-marker'.")
  492.  
  493. (defvar view-calendar-holidays-initially nil "\
  494. *Non-nil means display holidays for current three month period on entry.
  495. The holidays are displayed in another window when the calendar is first
  496. displayed.")
  497.  
  498. (defvar mark-holidays-in-calendar nil "\
  499. *Non-nil means mark dates of holidays in the calendar window.
  500. The marking symbol is specified by the variable `calendar-holiday-marker'.")
  501.  
  502. (defvar all-hebrew-calendar-holidays nil "\
  503. *If nil, show only major holidays from the Hebrew calendar.
  504. This means only those Jewish holidays that appear on secular calendars.
  505.  
  506. If t, show all the holidays that would appear in a complete Hebrew calendar.")
  507.  
  508. (defvar all-christian-calendar-holidays nil "\
  509. *If nil, show only major holidays from the Christian calendar.
  510. This means only those Christian holidays that appear on secular calendars.
  511.  
  512. If t, show all the holidays that would appear in a complete Christian
  513. calendar.")
  514.  
  515. (defvar all-islamic-calendar-holidays nil "\
  516. *If nil, show only major holidays from the Islamic calendar.
  517. This means only those Islamic holidays that appear on secular calendars.
  518.  
  519. If t, show all the holidays that would appear in a complete Islamic
  520. calendar.")
  521.  
  522. (defvar calendar-load-hook nil "\
  523. *List of functions to be called after the calendar is first loaded.
  524. This is the place to add key bindings to `calendar-mode-map'.")
  525.  
  526. (defvar initial-calendar-window-hook nil "\
  527. *List of functions to be called when the calendar window is first opened.
  528. The functions invoked are called after the calendar window is opened, but
  529. once opened is never called again.  Leaving the calendar with the `q' command
  530. and reentering it will cause these functions to be called again.")
  531.  
  532. (defvar today-visible-calendar-hook nil "\
  533. *List of functions called whenever the current date is visible.
  534. This can be used, for example, to replace today's date with asterisks; a
  535. function `calendar-star-date' is included for this purpose:
  536.     (setq today-visible-calendar-hook 'calendar-star-date)
  537. It can also be used to mark the current date with `calendar-today-marker';
  538. a function is also provided for this:
  539.     (setq today-visible-calendar-hook 'calendar-mark-today)
  540.  
  541. The corresponding variable `today-invisible-calendar-hook' is the list of
  542. functions called when the calendar function was called when the current
  543. date is not visible in the window.
  544.  
  545. Other than the use of the provided functions, the changing of any
  546. characters in the calendar buffer by the hooks may cause the failure of the
  547. functions that move by days and weeks.")
  548.  
  549. (defvar today-invisible-calendar-hook nil "\
  550. *List of functions called whenever the current date is not visible.
  551.  
  552. The corresponding variable `today-visible-calendar-hook' is the list of
  553. functions called when the calendar function was called when the current
  554. date is visible in the window.
  555.  
  556. Other than the use of the provided functions, the changing of any
  557. characters in the calendar buffer by the hooks may cause the failure of the
  558. functions that move by days and weeks.")
  559.  
  560. (defvar diary-file "~/diary" "\
  561. *Name of the file in which one's personal diary of dates is kept.
  562.  
  563. The file's entries are lines in any of the forms
  564.  
  565.             MONTH/DAY
  566.             MONTH/DAY/YEAR
  567.             MONTHNAME DAY
  568.             MONTHNAME DAY, YEAR
  569.             DAYNAME
  570.  
  571. at the beginning of the line; the remainder of the line is the diary entry
  572. string for that date.  MONTH and DAY are one or two digit numbers, YEAR is
  573. a number and may be written in full or abbreviated to the final two digits.
  574. If the date does not contain a year, it is generic and applies to any year.
  575. DAYNAME entries apply to any date on which is on that day of the week.
  576. MONTHNAME and DAYNAME can be spelled in full, abbreviated to three
  577. characters (with or without a period), capitalized or not.  Any of DAY,
  578. MONTH, or MONTHNAME, YEAR can be `*' which matches any day, month, or year,
  579. respectively.
  580.  
  581. The European style (in which the day precedes the month) can be used
  582. instead, if you execute `european-calendar' when in the calendar, or set
  583. `european-calendar-style' to t in your .emacs file.  The European forms are
  584.  
  585.             DAY/MONTH
  586.             DAY/MONTH/YEAR
  587.             DAY MONTHNAME
  588.             DAY MONTHNAME YEAR
  589.             DAYNAME
  590.  
  591. To revert to the default American style from the European style, execute
  592. `american-calendar' in the calendar.
  593.  
  594. A diary entry can be preceded by the character
  595. `diary-nonmarking-symbol' (ordinarily `&') to make that entry
  596. nonmarking--that is, it will not be marked on dates in the calendar
  597. window but will appear in a diary window.
  598.  
  599. Multiline diary entries are made by indenting lines after the first with
  600. either a TAB or one or more spaces.
  601.  
  602. Lines not in one the above formats are ignored.  Here are some sample diary
  603. entries (in the default American style):
  604.  
  605.      12/22/1988 Twentieth wedding anniversary!!
  606.      &1/1. Happy New Year!
  607.      10/22 Ruth's birthday.
  608.      21: Payday
  609.      Tuesday--weekly meeting with grad students at 10am
  610.               Supowit, Shen, Bitner, and Kapoor to attend.
  611.      1/13/89 Friday the thirteenth!!
  612.      &thu 4pm squash game with Lloyd.
  613.      mar 16 Dad's birthday
  614.      April 15, 1989 Income tax due.
  615.      &* 15 time cards due.
  616.  
  617. If the first line of a diary entry consists only of the date or day name with
  618. no trailing blanks or punctuation, then that line is not displayed in the
  619. diary window; only the continuation lines is shown.  For example, the
  620. single diary entry
  621.  
  622.      02/11/1989
  623.       Bill Blattner visits Princeton today
  624.       2pm Cognitive Studies Committee meeting
  625.       2:30-5:30 Lizzie at Lawrenceville for `Group Initiative'
  626.       4:00pm Jamie Tappenden
  627.       7:30pm Dinner at George and Ed's for Alan Ryan
  628.       7:30-10:00pm dance at Stewart Country Day School
  629.  
  630. will appear in the diary window without the date line at the beginning.  This
  631. facility allows the diary window to look neater, but can cause confusion if
  632. used with more than one day's entries displayed.
  633.  
  634. Diary entries can be based on Lisp sexps.  For example, the diary entry
  635.  
  636.       %%(diary-block 11 1 1990 11 10 1990) Vacation
  637.  
  638. causes the diary entry \"Vacation\" to appear from November 1 through November
  639. 10, 1990.  Other functions available are `diary-float', `diary-anniversary',
  640. `diary-cyclic', `diary-day-of-year', `diary-iso-date', `diary-french-date',
  641. `diary-hebrew-date', `diary-islamic-date', `diary-mayan-date',
  642. `diary-yahrzeit', `diary-sunrise-sunset', `diary-phases-of-moon',
  643. `diary-parasha', `diary-omer', `diary-rosh-hodesh', and
  644. `diary-sabbath-candles'.  See the documentation for the function
  645. `list-sexp-diary-entries' for more details.
  646.  
  647. Diary entries based on the Hebrew and/or the Islamic calendar are also
  648. possible, but because these are somewhat slow, they are ignored
  649. unless you set the `nongregorian-diary-listing-hook' and the
  650. `nongregorian-diary-marking-hook' appropriately.  See the documentation
  651. for these functions for details.
  652.  
  653. Diary files can contain directives to include the contents of other files; for
  654. details, see the documentation for the variable `list-diary-entries-hook'.")
  655.  
  656. (defvar diary-nonmarking-symbol "&" "\
  657. *Symbol indicating that a diary entry is not to be marked in the calendar.")
  658.  
  659. (defvar hebrew-diary-entry-symbol "H" "\
  660. *Symbol indicating a diary entry according to the Hebrew calendar.")
  661.  
  662. (defvar islamic-diary-entry-symbol "I" "\
  663. *Symbol indicating a diary entry according to the Islamic calendar.")
  664.  
  665. (defvar diary-include-string "#include" "\
  666. *The string indicating inclusion of another file of diary entries.
  667. See the documentation for the function `include-other-diary-files'.")
  668.  
  669. (defvar sexp-diary-entry-symbol "%%" "\
  670. *The string used to indicate a sexp diary entry in diary-file.
  671. See the documentation for the function `list-sexp-diary-entries'.")
  672.  
  673. (defvar abbreviated-calendar-year t "\
  674. *Interpret a two-digit year DD in a diary entry as either 19DD or 20DD.
  675. For the Gregorian calendar; similarly for the Hebrew and Islamic calendars.
  676. If this variable is nil, years must be written in full.")
  677.  
  678. (defvar european-calendar-style nil "\
  679. *Use the European style of dates in the diary and in any displays.
  680. If this variable is t, a date 1/2/1990 would be interpreted as February 1,
  681. 1990.  The accepted European date styles are
  682.  
  683.             DAY/MONTH
  684.             DAY/MONTH/YEAR
  685.             DAY MONTHNAME
  686.             DAY MONTHNAME YEAR
  687.             DAYNAME
  688.  
  689. Names can be capitalized or not, written in full, or abbreviated to three
  690. characters with or without a period.")
  691.  
  692. (defvar american-date-diary-pattern '((month "/" day "[^/0-9]") (month "/" day "/" year "[^0-9]") (monthname " *" day "[^,0-9]") (monthname " *" day ", *" year "[^0-9]") (dayname "\\W")) "\
  693. *List of pseudo-patterns describing the American patterns of date used.
  694. See the documentation of `diary-date-forms' for an explanation.")
  695.  
  696. (defvar european-date-diary-pattern '((day "/" month "[^/0-9]") (day "/" month "/" year "[^0-9]") (backup day " *" monthname "\\W+\\<[^*0-9]") (day " *" monthname " *" year "[^0-9]") (dayname "\\W")) "\
  697. *List of pseudo-patterns describing the European patterns of date used.
  698. See the documentation of `diary-date-forms' for an explanation.")
  699.  
  700. (defvar european-calendar-display-form '((if dayname (concat dayname ", ")) day " " monthname " " year) "\
  701. *Pseudo-pattern governing the way a date appears in the European style.
  702. See the documentation of calendar-date-display-form for an explanation.")
  703.  
  704. (defvar american-calendar-display-form '((if dayname (concat dayname ", ")) monthname " " day ", " year) "\
  705. *Pseudo-pattern governing the way a date appears in the American style.
  706. See the documentation of `calendar-date-display-form' for an explanation.")
  707.  
  708. (defvar print-diary-entries-hook 'lpr-buffer "\
  709. *List of functions called after a temporary diary buffer is prepared.
  710. The buffer shows only the diary entries currently visible in the diary
  711. buffer.  The default just does the printing.  Other uses might include, for
  712. example, rearranging the lines into order by day and time, saving the buffer
  713. instead of deleting it, or changing the function used to do the printing.")
  714.  
  715. (defvar list-diary-entries-hook nil "\
  716. *List of functions called after diary file is culled for relevant entries.
  717. It is to be used for diary entries that are not found in the diary file.
  718.  
  719. A function `include-other-diary-files' is provided for use as the value of
  720. this hook.  This function enables you to use shared diary files together
  721. with your own.  The files included are specified in the diary file by lines
  722. of the form
  723.  
  724.         #include \"filename\"
  725.  
  726. This is recursive; that is, #include directives in files thus included are
  727. obeyed.  You can change the \"#include\" to some other string by changing
  728. the variable `diary-include-string'.  When you use `include-other-diary-files'
  729. as part of the list-diary-entries-hook, you will probably also want to use the
  730. function `mark-included-diary-files' as part of `mark-diary-entries-hook'.
  731.  
  732. For example, you could use
  733.  
  734.      (setq list-diary-entries-hook
  735.        '(include-other-diary-files sort-diary-entries))
  736.      (setq diary-display-hook 'fancy-diary-display)
  737.  
  738. in your `.emacs' file to cause the fancy diary buffer to be displayed with
  739. diary entries from various included files, each day's entries sorted into
  740. lexicographic order.")
  741.  
  742. (defvar diary-hook nil "\
  743. *List of functions called after the display of the diary.
  744. Can be used for appointment notification.")
  745.  
  746. (defvar diary-display-hook nil "\
  747. *List of functions that handle the display of the diary.
  748. If nil (the default), `simple-diary-display' is used.  Use `ignore' for no
  749. diary display.
  750.  
  751. Ordinarily, this just displays the diary buffer (with holidays indicated in
  752. the mode line), if there are any relevant entries.  At the time these
  753. functions are called, the variable `diary-entries-list' is a list, in order
  754. by date, of all relevant diary entries in the form of ((MONTH DAY YEAR)
  755. STRING), where string is the diary entry for the given date.  This can be
  756. used, for example, a different buffer for display (perhaps combined with
  757. holidays), or produce hard copy output.
  758.  
  759. A function `fancy-diary-display' is provided as an alternative
  760. choice for this hook; this function prepares a special noneditable diary
  761. buffer with the relevant diary entries that has neat day-by-day arrangement
  762. with headings.  The fancy diary buffer will show the holidays unless the
  763. variable `holidays-in-diary-buffer' is set to nil.  Ordinarily, the fancy
  764. diary buffer will not show days for which there are no diary entries, even
  765. if that day is a holiday; if you want such days to be shown in the fancy
  766. diary buffer, set the variable `diary-list-include-blanks' to t.")
  767.  
  768. (defvar nongregorian-diary-listing-hook nil "\
  769. *List of functions called for listing diary file and included files.
  770. As the files are processed for diary entries, these functions are used to cull
  771. relevant entries.  You can use either or both of `list-hebrew-diary-entries'
  772. and `list-islamic-diary-entries'.  The documentation for these functions
  773. describes the style of such diary entries.")
  774.  
  775. (defvar mark-diary-entries-hook nil "\
  776. *List of functions called after marking diary entries in the calendar.
  777.  
  778. A function `mark-included-diary-files' is also provided for use as the
  779. mark-diary-entries-hook; it enables you to use shared diary files together
  780. with your own.  The files included are specified in the diary file by lines
  781. of the form
  782.         #include \"filename\"
  783. This is recursive; that is, #include directives in files thus included are
  784. obeyed.  You can change the \"#include\" to some other string by changing the
  785. variable `diary-include-string'.  When you use `mark-included-diary-files' as
  786. part of the mark-diary-entries-hook, you will probably also want to use the
  787. function `include-other-diary-files' as part of `list-diary-entries-hook'.")
  788.  
  789. (defvar nongregorian-diary-marking-hook nil "\
  790. *List of functions called for marking diary file and included files.
  791. As the files are processed for diary entries, these functions are used to cull
  792. relevant entries.  You can use either or both of `mark-hebrew-diary-entries'
  793. and `mark-islamic-diary-entries'.  The documentation for these functions
  794. describes the style of such diary entries.")
  795.  
  796. (defvar diary-list-include-blanks nil "\
  797. *If nil, do not include days with no diary entry in the list of diary entries.
  798. Such days will then not be shown in the the fancy diary buffer, even if they
  799. are holidays.")
  800.  
  801. (defvar holidays-in-diary-buffer t "\
  802. *Non-nil means include holidays in the diary display.
  803. The holidays appear in the mode line of the diary buffer, or in the
  804. fancy diary buffer next to the date.  This slows down the diary functions
  805. somewhat; setting it to nil makes the diary display faster.")
  806.  
  807. (put 'general-holidays 'risky-local-variable t)
  808.  
  809. (defvar general-holidays '((holiday-fixed 1 1 "New Year's Day") (holiday-float 1 1 3 "Martin Luther King Day") (holiday-fixed 2 2 "Ground Hog Day") (holiday-fixed 2 14 "Valentine's Day") (holiday-float 2 1 3 "President's Day") (holiday-fixed 3 17 "St. Patrick's Day") (holiday-fixed 4 1 "April Fool's Day") (holiday-float 5 0 2 "Mother's Day") (holiday-float 5 1 -1 "Memorial Day") (holiday-fixed 6 14 "Flag Day") (holiday-float 6 0 3 "Father's Day") (holiday-fixed 7 4 "Independence Day") (holiday-float 9 1 1 "Labor Day") (holiday-float 10 1 2 "Columbus Day") (holiday-fixed 10 31 "Halloween") (holiday-fixed 11 11 "Veteran's Day") (holiday-float 11 4 4 "Thanksgiving")) "\
  810. *General holidays.  Default value is for the United States.
  811. See the documentation for `calendar-holidays' for details.")
  812.  
  813. (put 'local-holidays 'risky-local-variable t)
  814.  
  815. (defvar local-holidays nil "\
  816. *Local holidays.
  817. See the documentation for `calendar-holidays' for details.")
  818.  
  819. (put 'other-holidays 'risky-local-variable t)
  820.  
  821. (defvar other-holidays nil "\
  822. *User defined holidays.
  823. See the documentation for `calendar-holidays' for details.")
  824.  
  825. (put 'hebrew-holidays-1 'risky-local-variable t)
  826.  
  827. (defvar hebrew-holidays-1 '((holiday-rosh-hashanah-etc) (if all-hebrew-calendar-holidays (holiday-julian 11 (let* ((m displayed-month) (y displayed-year) (year)) (increment-calendar-month m y -1) (let ((year (extract-calendar-year (calendar-julian-from-absolute (calendar-absolute-from-gregorian (list m 1 y)))))) (if (zerop (% (1+ year) 4)) 22 21))) "\"Tal Umatar\" (evening)"))))
  828.  
  829. (put 'hebrew-holidays-2 'risky-local-variable t)
  830.  
  831. (defvar hebrew-holidays-2 '((if all-hebrew-calendar-holidays (holiday-hanukkah) (holiday-hebrew 9 25 "Hanukkah")) (if all-hebrew-calendar-holidays (holiday-hebrew 10 (let ((h-year (extract-calendar-year (calendar-hebrew-from-absolute (calendar-absolute-from-gregorian (list displayed-month 28 displayed-year)))))) (if (= (% (calendar-absolute-from-hebrew (list 10 10 h-year)) 7) 6) 11 10)) "Tzom Teveth")) (if all-hebrew-calendar-holidays (holiday-hebrew 11 15 "Tu B'Shevat"))))
  832.  
  833. (put 'hebrew-holidays-3 'risky-local-variable t)
  834.  
  835. (defvar hebrew-holidays-3 '((if all-hebrew-calendar-holidays (holiday-hebrew 11 (let ((m displayed-month) (y displayed-year)) (increment-calendar-month m y 1) (let* ((h-year (extract-calendar-year (calendar-hebrew-from-absolute (calendar-absolute-from-gregorian (list m (calendar-last-day-of-month m y) y))))) (s-s (calendar-hebrew-from-absolute (if (= (% (calendar-absolute-from-hebrew (list 7 1 h-year)) 7) 6) (calendar-dayname-on-or-before 6 (calendar-absolute-from-hebrew (list 11 17 h-year))) (calendar-dayname-on-or-before 6 (calendar-absolute-from-hebrew (list 11 16 h-year)))))) (day (extract-calendar-day s-s))) day)) "Shabbat Shirah"))))
  836.  
  837. (put 'hebrew-holidays-4 'risky-local-variable t)
  838.  
  839. (defvar hebrew-holidays-4 '((holiday-passover-etc) (if (and all-hebrew-calendar-holidays (let* ((m displayed-month) (y displayed-year) (year)) (increment-calendar-month m y -1) (let ((year (extract-calendar-year (calendar-julian-from-absolute (calendar-absolute-from-gregorian (list m 1 y)))))) (= 21 (% year 28))))) (holiday-julian 3 26 "Kiddush HaHamah")) (if all-hebrew-calendar-holidays (holiday-tisha-b-av-etc))))
  840.  
  841. (put 'hebrew-holidays 'risky-local-variable t)
  842.  
  843. (defvar hebrew-holidays (append hebrew-holidays-1 hebrew-holidays-2 hebrew-holidays-3 hebrew-holidays-4) "\
  844. *Jewish holidays.
  845. See the documentation for `calendar-holidays' for details.")
  846.  
  847. (put 'christian-holidays 'risky-local-variable t)
  848.  
  849. (defvar christian-holidays '((if all-christian-calendar-holidays (holiday-fixed 1 6 "Epiphany")) (holiday-easter-etc) (if all-christian-calendar-holidays (holiday-greek-orthodox-easter)) (if all-christian-calendar-holidays (holiday-fixed 8 15 "Assumption")) (if all-christian-calendar-holidays (holiday-advent)) (holiday-fixed 12 25 "Christmas") (if all-christian-calendar-holidays (holiday-julian 12 25 "Eastern Orthodox Christmas"))) "\
  850. *Christian holidays.
  851. See the documentation for `calendar-holidays' for details.")
  852.  
  853. (put 'islamic-holidays 'risky-local-variable t)
  854.  
  855. (defvar islamic-holidays '((holiday-islamic 1 1 (format "Islamic New Year %d" (let ((m displayed-month) (y displayed-year)) (increment-calendar-month m y 1) (extract-calendar-year (calendar-islamic-from-absolute (calendar-absolute-from-gregorian (list m (calendar-last-day-of-month m y) y))))))) (if all-islamic-calendar-holidays (holiday-islamic 1 10 "Ashura")) (if all-islamic-calendar-holidays (holiday-islamic 3 12 "Mulad-al-Nabi")) (if all-islamic-calendar-holidays (holiday-islamic 7 26 "Shab-e-Mi'raj")) (if all-islamic-calendar-holidays (holiday-islamic 8 15 "Shab-e-Bara't")) (holiday-islamic 9 1 "Ramadan Begins") (if all-islamic-calendar-holidays (holiday-islamic 9 27 "Shab-e Qadr")) (if all-islamic-calendar-holidays (holiday-islamic 10 1 "Id-al-Fitr")) (if all-islamic-calendar-holidays (holiday-islamic 12 10 "Id-al-Adha"))) "\
  856. *Islamic holidays.
  857. See the documentation for `calendar-holidays' for details.")
  858.  
  859. (put 'solar-holidays 'risky-local-variable t)
  860.  
  861. (defvar solar-holidays '((if (fboundp 'atan) (solar-equinoxes-solstices)) (if (progn (require 'cal-dst) t) (funcall 'holiday-sexp calendar-daylight-savings-starts '(format "Daylight Savings Time Begins %s" (if (fboundp 'atan) (solar-time-string (/ calendar-daylight-savings-starts-time (float 60)) calendar-standard-time-zone-name) "")))) (funcall 'holiday-sexp calendar-daylight-savings-ends '(format "Daylight Savings Time Ends %s" (if (fboundp 'atan) (solar-time-string (/ calendar-daylight-savings-ends-time (float 60)) calendar-daylight-time-zone-name) "")))) "\
  862. *Sun-related holidays.
  863. See the documentation for `calendar-holidays' for details.")
  864.  
  865. (put 'calendar-holidays 'risky-local-variable t)
  866.  
  867. (autoload 'calendar "calendar" "\
  868. Display a three-month calendar in another window.
  869. The three months appear side by side, with the current month in the middle
  870. surrounded by the previous and next months.  The cursor is put on today's date.
  871.  
  872. If called with an optional prefix argument, prompts for month and year.
  873.  
  874. This function is suitable for execution in a .emacs file; appropriate setting
  875. of the variable `view-diary-entries-initially' will cause the diary entries for
  876. the current date to be displayed in another window.  The value of the variable
  877. `number-of-diary-entries' controls the number of days of diary entries
  878. displayed upon initial display of the calendar.
  879.  
  880. An optional prefix argument ARG causes the calendar displayed to be ARG
  881. months in the future if ARG is positive or in the past if ARG is negative;
  882. in this case the cursor goes on the first day of the month.
  883.  
  884. Once in the calendar window, future or past months can be moved into view.
  885. Arbitrary months can be displayed, or the calendar can be scrolled forward
  886. or backward.
  887.  
  888. The cursor can be moved forward or backward by one day, one week, one month,
  889. or one year.  All of these commands take prefix arguments which, when negative,
  890. cause movement in the opposite direction.  For convenience, the digit keys
  891. and the minus sign are automatically prefixes.  The window is replotted as
  892. necessary to display the desired date.
  893.  
  894. Diary entries can be marked on the calendar or displayed in another window.
  895.  
  896. Use M-x describe-mode for details of the key bindings in the calendar window.
  897.  
  898. The Gregorian calendar is assumed.
  899.  
  900. After loading the calendar, the hooks given by the variable
  901. `calendar-load-hook' are run.  This is the place to add key bindings to the
  902. calendar-mode-map.
  903.  
  904. After preparing the calendar window initially, the hooks given by the variable
  905. `initial-calendar-window-hook' are run.
  906.  
  907. The hooks given by the variable `today-visible-calendar-hook' are run
  908. everytime the calendar window gets scrolled, if the current date is visible
  909. in the window.  If it is not visible, the hooks given by the variable
  910. `today-invisible-calendar-hook' are run.  Thus, for example, setting
  911. `today-visible-calendar-hook' to 'calendar-star-date will cause today's date
  912. to be replaced by asterisks to highlight it whenever it is in the window." t nil)
  913.  
  914. (autoload 'list-yahrzeit-dates "calendar" "\
  915. List Yahrzeit dates for *Gregorian* DEATH-DATE from START-YEAR to END-YEAR.
  916. When called interactively from the calendar window, the date of death is taken
  917. from the cursor position." t nil)
  918.  
  919. ;;;***
  920.  
  921. ;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (12147 26371))
  922. ;;; Generated autoloads from calendar/cal-dst.el
  923.  
  924. (put 'calendar-daylight-savings-starts 'risky-local-variable t)
  925.  
  926. (put 'calendar-daylight-savings-ends 'risky-local-variable t)
  927.  
  928. ;;;***
  929.  
  930. ;;;### (autoloads (diary) "diary-lib" "calendar/diary-lib.el" (12147 26376))
  931. ;;; Generated autoloads from calendar/diary-lib.el
  932.  
  933. (autoload 'diary "diary-lib" "\
  934. Generate the diary window for ARG days starting with the current date.
  935. If no argument is provided, the number of days of diary entries is governed
  936. by the variable `number-of-diary-entries'.  This function is suitable for
  937. execution in a `.emacs' file." t nil)
  938.  
  939. ;;;***
  940.  
  941. ;;;### (autoloads (holidays) "holidays" "calendar/holidays.el" (12247 8260))
  942. ;;; Generated autoloads from calendar/holidays.el
  943.  
  944. (autoload 'holidays "holidays" "\
  945. Display the holidays for last month, this month, and next month.
  946. If called with an optional prefix argument, prompts for month and year.
  947.  
  948. This function is suitable for execution in a .emacs file." t nil)
  949.  
  950. ;;;***
  951.  
  952. ;;;### (autoloads (phases-of-moon) "lunar" "calendar/lunar.el" (12147 26373))
  953. ;;; Generated autoloads from calendar/lunar.el
  954.  
  955. (autoload 'phases-of-moon "lunar" "\
  956. Display the quarters of the moon for last month, this month, and next month.
  957. If called with an optional prefix argument, prompts for month and year.
  958.  
  959. This function is suitable for execution in a .emacs file." t nil)
  960.  
  961. ;;;***
  962.  
  963. ;;;### (autoloads (solar-equinoxes-solstices sunrise-sunset) "solar" "calendar/solar.el" (12147 26373))
  964. ;;; Generated autoloads from calendar/solar.el
  965.  
  966. (defvar calendar-time-display-form '(12-hours ":" minutes am-pm (if time-zone " (") time-zone (if time-zone ")")) "\
  967. *The pseudo-pattern that governs the way a time of day is formatted.
  968.  
  969. A pseudo-pattern is a list of expressions that can involve the keywords
  970. `12-hours', `24-hours', and `minutes',  all numbers in string form,
  971. and `am-pm' and `time-zone',  both alphabetic strings.
  972.  
  973. For example, the form
  974.  
  975.   '(24-hours \":\" minutes
  976.     (if time-zone \" (\") time-zone (if time-zone \")\"))
  977.  
  978. would give military-style times like `21:07 (UTC)'.")
  979.  
  980. (defvar calendar-latitude nil "\
  981. *Latitude of `calendar-location-name' in degrees.
  982.  
  983. The value can be either a decimal fraction (one place of accuracy is
  984. sufficient), + north, - south, such as 40.7 for New York City, or the value
  985. can be a vector [degrees minutes north/south] such as [40 50 north] for New
  986. York City.
  987.  
  988. This variable should be set in site-local.el.")
  989.  
  990. (defvar calendar-longitude nil "\
  991. *Longitude of `calendar-location-name' in degrees.
  992.  
  993. The value can be either a decimal fraction (one place of accuracy is
  994. sufficient), + east, - west, such as -73.9 for New York City, or the value
  995. can be a vector [degrees minutes east/west] such as [73 55 west] for New
  996. York City.
  997.  
  998. This variable should be set in site-local.el.")
  999.  
  1000. (defvar calendar-location-name '(let ((float-output-format "%.1f")) (format "%s%s, %s%s" (if (numberp calendar-latitude) (abs calendar-latitude) (+ (aref calendar-latitude 0) (/ (aref calendar-latitude 1) 60.0))) (if (numberp calendar-latitude) (if (> calendar-latitude 0) "N" "S") (if (equal (aref calendar-latitude 2) 'north) "N" "S")) (if (numberp calendar-longitude) (abs calendar-longitude) (+ (aref calendar-longitude 0) (/ (aref calendar-longitude 1) 60.0))) (if (numberp calendar-longitude) (if (> calendar-longitude 0) "E" "W") (if (equal (aref calendar-latitude 2) 'east) "E" "W")))) "\
  1001. *Expression evaluating to name of `calendar-longitude', calendar-latitude'.
  1002. For example, \"New York City\".  Default value is just the latitude, longitude
  1003. pair.
  1004.  
  1005. This variable should be set in site-local.el.")
  1006.  
  1007. (autoload 'sunrise-sunset "solar" "\
  1008. Local time of sunrise and sunset for today.  Accurate to +/- 2 minutes.
  1009. If called with an optional prefix argument, prompt for date.
  1010.  
  1011. If called with an optional double prefix argument, prompt for longitude,
  1012. latitude, time zone, and date, and always use standard time.
  1013.  
  1014. This function is suitable for execution in a .emacs file." t nil)
  1015.  
  1016. (autoload 'solar-equinoxes-solstices "solar" "\
  1017. Date and time of equinoxes and solstices, if visible in the calendar window.
  1018. Requires floating point." nil nil)
  1019.  
  1020. ;;;***
  1021.  
  1022. ;;;### (autoloads (gdbsrc) "gdbsrc" "comint/gdbsrc.el" (12327 53721))
  1023. ;;; Generated autoloads from comint/gdbsrc.el
  1024.  
  1025. (autoload 'gdbsrc "gdbsrc" "\
  1026. Activates a gdb session with gdbsrc-mode turned on.  A numeric prefix
  1027. argument can be used to specify a running process to attach, and a non-numeric
  1028. prefix argument will cause you to be prompted for a core file to debug." t nil)
  1029.  
  1030. ;;;***
  1031.  
  1032. ;;;### (autoloads (perldb xdb dbx sdb) "gud" "comint/gud.el" (12212 10571))
  1033. ;;; Generated autoloads from comint/gud.el
  1034.  
  1035. (autoload 'sdb "gud" "\
  1036. Run sdb on program FILE in buffer *gud-FILE*.
  1037. The directory containing FILE becomes the initial working directory
  1038. and source-file directory for your debugger." t nil)
  1039.  
  1040. (autoload 'dbx "gud" "\
  1041. Run dbx on program FILE in buffer *gud-FILE*.
  1042. The directory containing FILE becomes the initial working directory
  1043. and source-file directory for your debugger." t nil)
  1044.  
  1045. (autoload 'xdb "gud" "\
  1046. Run xdb on program FILE in buffer *gud-FILE*.
  1047. The directory containing FILE becomes the initial working directory
  1048. and source-file directory for your debugger.
  1049.  
  1050. You can set the variable 'gud-xdb-directories' to a list of program source
  1051. directories if your program contains sources from more than one directory." t nil)
  1052.  
  1053. (autoload 'perldb "gud" "\
  1054. Run perldb on program FILE in buffer *gud-FILE*.
  1055. The directory containing FILE becomes the initial working directory
  1056. and source-file directory for your debugger." t nil)
  1057.  
  1058. ;;;***
  1059.  
  1060. ;;;### (autoloads (rlogin) "rlogin" "comint/rlogin.el" (12282 39208))
  1061. ;;; Generated autoloads from comint/rlogin.el
  1062.  
  1063. (add-hook 'same-window-regexps "^\\*rlogin-.*\\*\\(\\|<[0-9]+>\\)")
  1064.  
  1065. (autoload 'rlogin "rlogin" "\
  1066. Open a network login connection to HOST via the `rlogin' program.
  1067. Input is sent line-at-a-time to the remote connection.
  1068.  
  1069. Communication with the remote host is recorded in a buffer `*rlogin-HOST*'
  1070. \(or `*rlogin-USER@HOST*' if the remote username differs).
  1071. If a prefix argument is given and the buffer `*rlogin-HOST*' already exists,
  1072. a new buffer with a different connection will be made.
  1073.  
  1074. When called from a program, if the optional second argument is a string or 
  1075. buffer, it names the buffer to use.
  1076.  
  1077. The variable `rlogin-program' contains the name of the actual program to
  1078. run.  It can be a relative or absolute path.
  1079.  
  1080. The variable `rlogin-explicit-args' is a list of arguments to give to
  1081. the rlogin when starting.  They are added after any arguments given in
  1082. INPUT-ARGS.
  1083.  
  1084. If the default value of `rlogin-directory-tracking-mode' is t, then the
  1085. default directory in that buffer is set to a remote (FTP) file name to
  1086. access your home directory on the remote machine.  Occasionally this causes
  1087. an error, if you cannot access the home directory on that machine.  This
  1088. error is harmless as long as you don't try to use that default directory.
  1089.  
  1090. If `rlogin-directory-tracking-mode' is neither t nor nil, then the default
  1091. directory is initially set up to your (local) home directory.
  1092. This is useful if the remote machine and your local machine
  1093. share the same files via NFS.  This is the default.
  1094.  
  1095. If you wish to change directory tracking styles during a session, use the
  1096. function `rlogin-directory-tracking-mode' rather than simply setting the
  1097. variable." t nil)
  1098.  
  1099. ;;;***
  1100.  
  1101. ;;;### (autoloads (shell) "shell" "comint/shell.el" (12217 28621))
  1102. ;;; Generated autoloads from comint/shell.el
  1103.  
  1104. (defvar shell-prompt-pattern (purecopy "^[^#$%>\n]*[#$%>] *") "\
  1105. Regexp to match prompts in the inferior shell.
  1106. Defaults to \"^[^#$%>\\n]*[#$%>] *\", which works pretty well.
  1107. This variable is used to initialise `comint-prompt-regexp' in the
  1108. shell buffer.
  1109.  
  1110. The pattern should probably not match more than one line.  If it does,
  1111. shell-mode may become confused trying to distinguish prompt from input
  1112. on lines which don't start with a prompt.
  1113.  
  1114. This is a fine thing to set in your `.emacs' file.")
  1115.  
  1116. (autoload 'shell "shell" "\
  1117. Run an inferior shell, with I/O through buffer *shell*.
  1118. If buffer exists but shell process is not running, make new shell.
  1119. If buffer exists and shell process is running, 
  1120.  just switch to buffer `*shell*'.
  1121. Program used comes from variable `explicit-shell-file-name',
  1122.  or (if that is nil) from the ESHELL environment variable,
  1123.  or else from SHELL if there is no ESHELL.
  1124. If a file `~/.emacs_SHELLNAME' exists, it is given as initial input
  1125.  (Note that this may lose due to a timing error if the shell
  1126.   discards input when it starts up.)
  1127. The buffer is put in Shell mode, giving commands for sending input
  1128. and controlling the subjobs of the shell.  See `shell-mode'.
  1129. See also the variable `shell-prompt-pattern'.
  1130.  
  1131. The shell file name (sans directories) is used to make a symbol name
  1132. such as `explicit-csh-args'.  If that symbol is a variable,
  1133. its value is used as a list of arguments when invoking the shell.
  1134. Otherwise, one argument `-i' is passed to the shell.
  1135.  
  1136. \(Type \\[describe-mode] in the shell buffer for a list of commands.)" t nil)
  1137.  
  1138. ;;;***
  1139.  
  1140. ;;;### (autoloads (rsh telnet) "telnet" "comint/telnet.el" (12312 61317))
  1141. ;;; Generated autoloads from comint/telnet.el
  1142.  
  1143. (autoload 'telnet "telnet" "\
  1144. Open a network login connection to host named HOST (a string).
  1145. With a prefix argument, prompts for the port name or number as well.
  1146. Communication with HOST is recorded in a buffer *HOST-telnet*.
  1147. Normally input is edited in Emacs and sent a line at a time.
  1148. See also `\\[rsh]'." t nil)
  1149.  
  1150. (autoload 'rsh "telnet" "\
  1151. Open a network login connection to host named HOST (a string).
  1152. Communication with HOST is recorded in a buffer *HOST-rsh*.
  1153. Normally input is edited in Emacs and sent a line at a time.
  1154. See also `\\[telnet]'." t nil)
  1155.  
  1156. ;;;***
  1157.  
  1158. ;;;### (autoloads (ange-ftp-hook-function) "ange-ftp" "dired/ange-ftp.el" (12300 30814))
  1159. ;;; Generated autoloads from dired/ange-ftp.el
  1160.  
  1161. (defvar ange-ftp-path-format '("^/\\(\\([^@/:]*\\)@\\)?\\([^@/:]*\\):\\(.*\\)" 3 2 4) "\
  1162. *Format of a fully expanded remote pathname.  This is a cons
  1163. \(REGEXP . (HOST USER PATH)), where REGEXP is a regular expression matching
  1164. the full remote pathname, and HOST, USER, and PATH are the numbers of
  1165. parenthesized expressions in REGEXP for the components (in that order).")
  1166.  
  1167. (autoload 'ange-ftp-hook-function "ange-ftp" nil nil nil)
  1168.  
  1169. (or (assoc (car ange-ftp-path-format) file-name-handler-alist) (setq file-name-handler-alist (cons (cons (car ange-ftp-path-format) 'ange-ftp-hook-function) file-name-handler-alist)))
  1170.  
  1171. ;;;***
  1172.  
  1173. ;;;### (autoloads (dired-noselect dired-other-window dired) "dired" "dired/dired.el" (12337 13455))
  1174. ;;; Generated autoloads from dired/dired.el
  1175.  
  1176. (defvar dired-listing-switches (purecopy "-al") "\
  1177. *Switches passed to ls for dired. MUST contain the `l' option.
  1178. Can contain even `F', `b', `i' and `s'.")
  1179.  
  1180. (defvar dired-chown-program (purecopy (if (memq system-type '(dgux-unix hpux usg-unix-v silicon-graphics-unix)) "chown" "/etc/chown")) "\
  1181. *Name of chown command (usully `chown' or `/etc/chown').")
  1182.  
  1183. (defvar dired-ls-program (purecopy "ls") "\
  1184. *Absolute or relative name of the ls program used by dired.")
  1185.  
  1186. (defvar dired-ls-F-marks-symlinks t "\
  1187. *Informs dired about how ls -lF marks symbolic links.
  1188. Set this to t if `dired-ls-program' with -lF marks the symbolic link
  1189. itself with a trailing @ (usually the case under Ultrix).
  1190.  
  1191. Example: if `ln -s foo bar; ls -F bar' gives `bar -> foo', set it to
  1192. nil, if it gives `bar@ -> foo', set it to t.
  1193.  
  1194. Dired checks if there is really a @ appended.  Thus, if you have a
  1195. marking ls program on one host and a non-marking on another host, and
  1196. don't care about symbolic links which really end in a @, you can
  1197. always set this variable to t.")
  1198.  
  1199. (defvar dired-trivial-filenames (purecopy "^\\.\\.?$\\|^#") "\
  1200. *Regexp of files to skip when moving point to the first file of a new directory listing.
  1201. Nil means move to the subdir line, t means move to first file.")
  1202.  
  1203. (defvar dired-keep-marker-move t "\
  1204. If t, moved marked files are marked if their originals were.
  1205. If a character, those files (marked or not) are marked with that character.")
  1206.  
  1207. (defvar dired-keep-marker-copy 67 "\
  1208. If t, copied files are marked if their source files were.
  1209. If a character, those files are always marked with that character.")
  1210.  
  1211. (defvar dired-keep-marker-hardlink 72 "\
  1212. If t, hard-linked files are marked if the linked-to files were.
  1213. If a character, those files are always marked with that character.")
  1214.  
  1215. (defvar dired-keep-marker-symlink 89 "\
  1216. If t, symlinked marked files are marked if the linked-to files were.
  1217. If a character, those files are always marked with that character.")
  1218.  
  1219. (defvar dired-dwim-target nil "\
  1220. *If non-nil, dired tries to guess a default target directory:
  1221. If there is a dired buffer displayed in the next window, use
  1222. its current subdir, instead of the current subdir of this dired
  1223. buffer.
  1224.  
  1225. The target is used in the prompt for file copy, move etc.")
  1226.  
  1227. (defvar dired-copy-preserve-time nil "\
  1228. *If non-nil, Dired preserves the last-modified time in a file copy.
  1229. \(This works on only some systems.)\\<dired-mode-map>
  1230. Use `\\[dired-do-copy]' with a zero prefix argument to toggle its value.")
  1231.  
  1232. (define-key ctl-x-map "d" 'dired)
  1233.  
  1234. (autoload 'dired "dired" "\
  1235. \"Edit\" directory DIRNAME--delete, rename, print, etc. some files in it.
  1236. With an optional prefix argument you can specify the ls SWITCHES that are used.
  1237. Dired displays a list of files in DIRNAME (which may also have
  1238.   shell wildcards appended to select certain files).
  1239. You can move around in it with the usual commands.
  1240. You can flag files for deletion with \\<dired-mode-map>\\[dired-flag-file-deleted] and then delete them by
  1241.   typing \\[dired-do-deletions].
  1242. Type \\[describe-mode] after entering dired for more info.
  1243.  
  1244. If DIRNAME is already in a dired buffer, that buffer is used without refresh." t nil)
  1245.  
  1246. (define-key ctl-x-4-map "d" 'dired-other-window)
  1247.  
  1248. (autoload 'dired-other-window "dired" "\
  1249. \"Edit\" directory DIRNAME.  Like `dired' but selects in another window." t nil)
  1250.  
  1251. (autoload 'dired-noselect "dired" "\
  1252. Like `dired' but returns the dired buffer as value, does not select it." nil nil)
  1253.  
  1254. ;;;***
  1255.  
  1256. ;;;### (autoloads (dired-cwd-make-magic) "dired-cwd" "dired/dired-cwd.el" (11903 15632))
  1257. ;;; Generated autoloads from dired/dired-cwd.el
  1258.  
  1259. (autoload 'dired-cwd-make-magic "dired-cwd" "\
  1260. Modify COMMAND so that it's working directory is the current dired directory.
  1261. This works by binding `default-directory' to `(default-directory)'s value.
  1262. See also function `default-directory'." t nil)
  1263.  
  1264. ;;;***
  1265.  
  1266. ;;;### (autoloads (dired-do-rename-list dired-do-rename-numeric) "dired-num" "dired/dired-num.el" (12013 11569))
  1267. ;;; Generated autoloads from dired/dired-num.el
  1268.  
  1269. (autoload 'dired-do-rename-numeric "dired-num" "\
  1270. Rename all marked (or next ARG) files using numbers.
  1271. You are prompted for a format string, e.g \"part_%d_of_8\", and a starting
  1272. number, e.g. 1.  If there are 8 marked files, this example will rename them to
  1273.  
  1274.     part_1_of_8
  1275.     part_2_of_8
  1276.     ...
  1277.     part_8_of_8" t nil)
  1278.  
  1279. (autoload 'dired-do-rename-list "dired-num" "\
  1280. Rename all marked (or next ARG) files using elements from LIST.
  1281. You are prompted for a format string, e.g \"x_%s\", and the list,
  1282. e.g. '(foo bar zod).  This example will rename the marked files to
  1283.  
  1284.     x_foo
  1285.     x_bar
  1286.     x_zod
  1287.  
  1288. It is an error if LIST has not as many elements as there are files." t nil)
  1289.  
  1290. ;;;***
  1291.  
  1292. ;;;### (autoloads (dired-rcs-mark-rcs-files dired-rcs-mark-rcs-locked-files) "dired-rcs" "dired/dired-rcs.el" (12013 11570))
  1293. ;;; Generated autoloads from dired/dired-rcs.el
  1294.  
  1295. (autoload 'dired-rcs-mark-rcs-locked-files "dired-rcs" "\
  1296. Mark all files that are under RCS control and RCS-locked.
  1297. With prefix argument, unflag all those files.
  1298. Mentions RCS files for which a working file was not found in this buffer.
  1299. Type \\[dired-why] to see them again." t nil)
  1300.  
  1301. (autoload 'dired-rcs-mark-rcs-files "dired-rcs" "\
  1302. Mark all files that are under RCS control.
  1303. With prefix argument, unflag all those files.
  1304. Mentions RCS files for which a working file was not found in this buffer.
  1305. Type \\[dired-why] to see them again." t nil)
  1306.  
  1307. ;;;***
  1308.  
  1309. ;;;### (autoloads (dired-extra-startup) "dired-x" "dired/dired-x.el" (12178 36799))
  1310. ;;; Generated autoloads from dired/dired-x.el
  1311.  
  1312. (autoload 'dired-extra-startup "dired-x" "\
  1313. Automatically put on dired-mode-hook to get extra dired features:
  1314. \\<dired-mode-map>
  1315.   \\[dired-vm]    -- VM on folder
  1316.   \\[dired-rmail]    -- Rmail on folder
  1317.   \\[dired-do-insert-subdir]    -- insert all marked subdirs
  1318.   \\[dired-do-find-file]    -- visit all marked files simultaneously
  1319.   \\[dired-set-marker-char], \\[dired-restore-marker-char]    -- change and display dired-marker-char dynamically.
  1320.   \\[dired-omit-toggle]    -- toggle omitting of files
  1321.   \\[dired-mark-sexp]    -- mark by lisp expression
  1322.   \\[dired-do-unmark]    -- replace existing marker with another.
  1323.   \\[dired-mark-rcs-files]    -- mark all RCS controlled files
  1324.   \\[dired-mark-files-compilation-buffer]    -- mark compilation files
  1325.   \\[dired-copy-filename-as-kill]    -- copy the file or subdir names into the kill ring.
  1326.          You can feed it to other commands using \\[yank].
  1327.  
  1328. For more features, see variables
  1329.  
  1330.   dired-omit-files
  1331.   dired-omit-extenstions
  1332.   dired-dangerous-shell-command
  1333.   dired-mark-keys
  1334.   dired-local-variables-file
  1335.   dired-find-subdir
  1336.   dired-guess-have-gnutar
  1337.   dired-auto-shell-command-alist
  1338.  
  1339. See also functions
  1340.  
  1341.   dired-sort-on-size
  1342.   dired-do-relsymlink
  1343.   dired-flag-extension
  1344.   dired-virtual
  1345.   dired-jump-back
  1346.   dired-jump-back-other-window
  1347. " t nil)
  1348.  
  1349. ;;;***
  1350.  
  1351. ;;;### (autoloads (find-grep-dired find-name-dired find-dired) "find-dired" "dired/find-dired.el" (12211 28108))
  1352. ;;; Generated autoloads from dired/find-dired.el
  1353.  
  1354. (defvar find-ls-option (purecopy (if (eq system-type 'berkeley-unix) "-ls" "-exec ls -ldi {} \\;")) "\
  1355. *Option to `find' to produce an `ls -l'-type listing.")
  1356.  
  1357. (defvar find-grep-options (purecopy (if (eq system-type 'berkeley-unix) "-s" "-l")) "\
  1358. *Option to grep to be as silent as possible.
  1359. On Berkeley systems, this is `-s', for others it seems impossible to
  1360. suppress all output, so `-l' is used to print nothing more than the
  1361. file name.")
  1362.  
  1363. (defvar find-dired-multiple-buffers nil "\
  1364. *If non-nil, generates a new buffer for each find")
  1365.  
  1366. (autoload 'find-dired "find-dired" "\
  1367. Run `find' and go into dired-mode on a buffer of the output.
  1368. The command run (after changing into DIR) is
  1369.  
  1370.     find . \\( ARGS \\) -ls" t nil)
  1371.  
  1372. (autoload 'find-name-dired "find-dired" "\
  1373. Search DIR recursively for files matching the globbing pattern PATTERN,
  1374. and run dired on those files.
  1375. PATTERN is a shell wildcard (not an Emacs regexp) and need not be quoted.
  1376. The command run (after changing into DIR) is
  1377.  
  1378.     find . -name 'PATTERN' -ls" t nil)
  1379.  
  1380. (autoload 'find-grep-dired "find-dired" "\
  1381. Find files in DIR containing a regexp ARG and start Dired on output.
  1382. The command run (after changing into DIR) is
  1383.  
  1384.     find . (-type f -exec test -r {} \\;-exec grep -s ARG {} \\; -ls
  1385.  
  1386. Thus ARG can also contain additional grep options." t nil)
  1387.  
  1388. ;;;***
  1389.  
  1390. ;;;### (autoloads (edebug-eval-top-level-form) "edebug" "edebug/edebug.el" (12341 190))
  1391. ;;; Generated autoloads from edebug/edebug.el
  1392.  
  1393. (fset 'edebug-defun 'edebug-eval-top-level-form)
  1394.  
  1395. (autoload 'edebug-eval-top-level-form "edebug" "\
  1396. Evaluate a top level form, such as defun or defmacro.
  1397. This is like eval-defun, but with edebug calls.
  1398. Print its name in the minibuffer and leave point where it is,
  1399. or if an error occurs, leave point after it with mark at the original point." t nil)
  1400.  
  1401. (defvar global-edebug-prefix (purecopy "X") "\
  1402. Prefix key for global edebug commands, available from any buffer.")
  1403.  
  1404. ;;;***
  1405.  
  1406. ;;;### (autoloads (ediff-show-registry) "ediff-meta" "ediff/ediff-meta.el" (12331 54467))
  1407. ;;; Generated autoloads from ediff/ediff-meta.el
  1408.  
  1409. (autoload 'ediff-show-registry "ediff-meta" "\
  1410. Display Ediff's registry." t nil)
  1411.  
  1412. (defalias 'eregistry 'ediff-show-registry)
  1413.  
  1414. ;;;***
  1415.  
  1416. ;;;### (autoloads (electric-buffer-list) "ebuff-menu" "electric/ebuff-menu.el" (12211 28110))
  1417. ;;; Generated autoloads from electric/ebuff-menu.el
  1418.  
  1419. (autoload 'electric-buffer-list "ebuff-menu" "\
  1420. Pops up a buffer describing the set of Emacs buffers.
  1421. Vaguely like ITS lunar select buffer; combining typeoutoid buffer
  1422. listing with menuoid buffer selection.
  1423.  
  1424. If the very next character typed is a space then the buffer list
  1425. window disappears.  Otherwise, one may move around in the
  1426. buffer list window, marking buffers to be selected, saved or deleted.
  1427.  
  1428. To exit and select a new buffer, type a space when the cursor is on the
  1429. appropriate line of the buffer-list window.
  1430.  
  1431. Other commands are much like those of buffer-menu-mode.
  1432.  
  1433. Calls value of `electric-buffer-menu-mode-hook' on entry if non-nil.
  1434.  
  1435. \\{electric-buffer-menu-mode-map}" t nil)
  1436.  
  1437. ;;;***
  1438.  
  1439. ;;;### (autoloads (electric-command-history Electric-command-history-redo-expression) "echistory" "electric/echistory.el" (12211 28111))
  1440. ;;; Generated autoloads from electric/echistory.el
  1441.  
  1442. (autoload 'Electric-command-history-redo-expression "echistory" "\
  1443. Edit current history line in minibuffer and execute result.
  1444. With prefix argument NOCONFIRM, execute current line as-is without editing." t nil)
  1445.  
  1446. (autoload 'electric-command-history "echistory" "\
  1447. \\<electric-history-map>Major mode for examining and redoing commands from `command-history'.
  1448. This pops up a window with the Command History listing.
  1449. The number of command listed is controlled by `list-command-history-max'.
  1450. The command history is filtered by `list-command-history-filter' if non-nil.
  1451. Combines typeout Command History list window with menu like selection
  1452. of an expression from the history for re-evaluation in the *original* buffer.
  1453.  
  1454. The history displayed is filtered by `list-command-history-filter' if non-nil.
  1455.  
  1456. This pops up a window with the Command History listing.  If the very
  1457. next character typed is Space, the listing is killed and the previous
  1458. window configuration is restored.  Otherwise, you can browse in the
  1459. Command History with  Return  moving down and  Delete  moving up, possibly
  1460. selecting an expression to be redone with Space or quitting with `Q'.
  1461.  
  1462. Like Emacs-Lisp mode except that characters do not insert themselves and
  1463. Tab and Linefeed do not indent.  Instead these commands are provided:
  1464. \\{electric-history-map}
  1465.  
  1466. Calls the value of `electric-command-history-hook' if that is non-nil.
  1467. The Command History listing is recomputed each time this mode is invoked." t nil)
  1468.  
  1469. ;;;***
  1470.  
  1471. ;;;### (autoloads (evi) "evi" "emulators/evi.el" (12106 7816))
  1472. ;;; Generated autoloads from emulators/evi.el
  1473.  
  1474. (autoload 'evi "evi" "\
  1475. Start vi emulation in this buffer." t nil)
  1476.  
  1477. ;;;***
  1478.  
  1479. ;;;### (autoloads (set-gosmacs-bindings) "gosmacs" "emulators/gosmacs.el" (12147 26395))
  1480. ;;; Generated autoloads from emulators/gosmacs.el
  1481.  
  1482. (autoload 'set-gosmacs-bindings "gosmacs" "\
  1483. Rebind some keys globally to make GNU Emacs resemble Gosling Emacs.
  1484. Use \\[set-gnu-bindings] to restore previous global bindings." t nil)
  1485.  
  1486. ;;;***
  1487.  
  1488. ;;;### (autoloads (convert-mocklisp-buffer) "mlconvert" "emulators/mlconvert.el" (12147 26396))
  1489. ;;; Generated autoloads from emulators/mlconvert.el
  1490.  
  1491. (autoload 'convert-mocklisp-buffer "mlconvert" "\
  1492. Convert buffer of Mocklisp code to real Lisp that GNU Emacs can run." t nil)
  1493.  
  1494. ;;;***
  1495.  
  1496. ;;;### (autoloads (teco-command) "teco" "emulators/teco.el" (12013 11585))
  1497. ;;; Generated autoloads from emulators/teco.el
  1498.  
  1499. (autoload 'teco-command "teco" "\
  1500. Read and execute a Teco command string." t nil)
  1501.  
  1502. ;;;***
  1503.  
  1504. ;;;### (autoloads (tpu-edt-on) "tpu-edt" "emulators/tpu-edt.el" (12147 26398))
  1505. ;;; Generated autoloads from emulators/tpu-edt.el
  1506.  
  1507. (fset 'tpu-edt-mode 'tpu-edt-on)
  1508.  
  1509. (fset 'tpu-edt 'tpu-edt-on)
  1510.  
  1511. (autoload 'tpu-edt-on "tpu-edt" "\
  1512. Turn on TPU/edt emulation." t nil)
  1513.  
  1514. ;;;***
  1515.  
  1516. ;;;### (autoloads (term make-term) "term" "eterm/term.el" (12254 10521))
  1517. ;;; Generated autoloads from eterm/term.el
  1518.  
  1519. (autoload 'make-term "term" "\
  1520. Make a term process NAME in a buffer, running PROGRAM.
  1521. The name of the buffer is made by surrounding NAME with `*'s.
  1522. If there is already a running process in that buffer, it is not restarted.
  1523. Optional third arg STARTFILE is the name of a file to send the contents of to 
  1524. the process.  Any more args are arguments to PROGRAM." nil nil)
  1525.  
  1526. (autoload 'term "term" "\
  1527. Start a terminal-emulator in a new buffer." t nil)
  1528.  
  1529. ;;;***
  1530.  
  1531. ;;;### (autoloads (tperldb txdb tdbx tsdb tgdb) "tgud" "eterm/tgud.el" (12147 26618))
  1532. ;;; Generated autoloads from eterm/tgud.el
  1533.  
  1534. (autoload 'tgdb "tgud" "\
  1535. Run gdb on program FILE in buffer *tgud-FILE*.
  1536. The directory containing FILE becomes the initial working directory
  1537. and source-file directory for your debugger." t nil)
  1538.  
  1539. (autoload 'tsdb "tgud" "\
  1540. Run sdb on program FILE in buffer *tgud-FILE*.
  1541. The directory containing FILE becomes the initial working directory
  1542. and source-file directory for your debugger." t nil)
  1543.  
  1544. (autoload 'tdbx "tgud" "\
  1545. Run dbx on program FILE in buffer *tgud-FILE*.
  1546. The directory containing FILE becomes the initial working directory
  1547. and source-file directory for your debugger." t nil)
  1548.  
  1549. (autoload 'txdb "tgud" "\
  1550. Run xdb on program FILE in buffer *tgud-FILE*.
  1551. The directory containing FILE becomes the initial working directory
  1552. and source-file directory for your debugger.
  1553.  
  1554. You can set the variable 'tgud-xdb-directories' to a list of program source
  1555. directories if your program contains sources from more than one directory." t nil)
  1556.  
  1557. (autoload 'tperldb "tgud" "\
  1558. Run perldb on program FILE in buffer *tgud-FILE*.
  1559. The directory containing FILE becomes the initial working directory
  1560. and source-file directory for your debugger." t nil)
  1561.  
  1562. ;;;***
  1563.  
  1564. ;;;### (autoloads (tshell) "tshell" "eterm/tshell.el" (12147 26618))
  1565. ;;; Generated autoloads from eterm/tshell.el
  1566.  
  1567. (defvar tshell-prompt-pattern "^[^#$%>\n]*[#$%>] *" "\
  1568. Regexp to match prompts in the inferior shell.
  1569. Defaults to \"^[^#$%>\\n]*[#$%>] *\", which works pretty well.
  1570. This variable is used to initialise `term-prompt-regexp' in the 
  1571. shell buffer.
  1572.  
  1573. The pattern should probably not match more than one line.  If it does,
  1574. tshell-mode may become confused trying to distinguish prompt from input
  1575. on lines which don't start with a prompt.
  1576.  
  1577. This is a fine thing to set in your `.emacs' file.")
  1578.  
  1579. (autoload 'tshell "tshell" "\
  1580. Run an inferior shell, with I/O through buffer *shell*.
  1581. If buffer exists but shell process is not running, make new shell.
  1582. If buffer exists and shell process is running, just switch to buffer `*shell*'.
  1583. Program used comes from variable `explicit-shell-file-name',
  1584.  or (if that is nil) from the ESHELL environment variable,
  1585.  or else from SHELL if there is no ESHELL.
  1586. If a file `~/.emacs_SHELLNAME' exists, it is given as initial input
  1587.  (Note that this may lose due to a timing error if the shell
  1588.   discards input when it starts up.)
  1589. The buffer is put in Tshell mode, giving commands for sending input
  1590. and controlling the subjobs of the shell.  See `tshell-mode'.
  1591. See also the variable `tshell-prompt-pattern'.
  1592.  
  1593. The shell file name (sans directories) is used to make a symbol name
  1594. such as `explicit-csh-args'.  If that symbol is a variable,
  1595. its value is used as a list of arguments when invoking the shell.
  1596. Otherwise, one argument `-i' is passed to the shell.
  1597.  
  1598. \(Type \\[describe-mode] in the shell buffer for a list of commands.)" t nil)
  1599.  
  1600. ;;;***
  1601.  
  1602. ;;;### (autoloads (blackbox) "blackbox" "games/blackbox.el" (12147 26583))
  1603. ;;; Generated autoloads from games/blackbox.el
  1604.  
  1605. (autoload 'blackbox "blackbox" "\
  1606. Play blackbox.  Optional prefix argument is the number of balls;
  1607. the default is 4.
  1608.  
  1609. What is blackbox?
  1610.  
  1611. Blackbox is a game of hide and seek played on an 8 by 8 grid (the
  1612. Blackbox).  Your opponent (Emacs, in this case) has hidden several
  1613. balls (usually 4) within this box.  By shooting rays into the box and
  1614. observing where they emerge it is possible to deduce the positions of
  1615. the hidden balls.  The fewer rays you use to find the balls, the lower
  1616. your score.
  1617.  
  1618. Overview of play:
  1619.  
  1620. \\<blackbox-mode-map>To play blackbox, type \\[blackbox].  An optional prefix argument
  1621. specifies the number of balls to be hidden in the box; the default is
  1622. four.
  1623.  
  1624. The cursor can be moved around the box with the standard cursor
  1625. movement keys.
  1626.  
  1627. To shoot a ray, move the cursor to the edge of the box and press SPC.
  1628. The result will be determined and the playfield updated.
  1629.  
  1630. You may place or remove balls in the box by moving the cursor into the
  1631. box and pressing \\[bb-romp].
  1632.  
  1633. When you think the configuration of balls you have placed is correct,
  1634. press \\[bb-done].  You will be informed whether you are correct or
  1635. not, and be given your score.  Your score is the number of letters and
  1636. numbers around the outside of the box plus five for each incorrectly
  1637. placed ball.  If you placed any balls incorrectly, they will be
  1638. indicated with `x', and their actual positions indicated with `o'.
  1639.  
  1640. Details:
  1641.  
  1642. There are three possible outcomes for each ray you send into the box:
  1643.  
  1644.     Detour: the ray is deflected and emerges somewhere other than
  1645.         where you sent it in.  On the playfield, detours are
  1646.         denoted by matching pairs of numbers -- one where the
  1647.         ray went in, and the other where it came out.
  1648.  
  1649.     Reflection: the ray is reflected and emerges in the same place
  1650.         it was sent in.  On the playfield, reflections are
  1651.         denoted by the letter `R'.
  1652.  
  1653.     Hit:    the ray strikes a ball directly and is absorbed.  It does
  1654.         not emerge from the box.  On the playfield, hits are
  1655.         denoted by the letter `H'.
  1656.  
  1657. The rules for how balls deflect rays are simple and are best shown by
  1658. example.
  1659.  
  1660. As a ray approaches a ball it is deflected ninety degrees.  Rays can
  1661. be deflected multiple times.  In the diagrams below, the dashes
  1662. represent empty box locations and the letter `O' represents a ball.
  1663. The entrance and exit points of each ray are marked with numbers as
  1664. described under \"Detour\" above.  Note that the entrance and exit
  1665. points are always interchangeable.  `*' denotes the path taken by the
  1666. ray.
  1667.  
  1668. Note carefully the relative positions of the ball and the ninety
  1669. degree deflection it causes.
  1670.  
  1671.     1                                            
  1672.   - * - - - - - -         - - - - - - - -         - - - - - - - -       
  1673.   - * - - - - - -         - - - - - - - -         - - - - - - - -       
  1674. 1 * * - - - - - -         - - - - - - - -         - O - - - - O -       
  1675.   - - O - - - - -         - - O - - - - -         - - * * * * - -
  1676.   - - - - - - - -         - - - * * * * * 2     3 * * * - - * - -
  1677.   - - - - - - - -         - - - * - - - -         - - - O - * - -      
  1678.   - - - - - - - -         - - - * - - - -         - - - - * * - -       
  1679.   - - - - - - - -         - - - * - - - -         - - - - * - O -       
  1680.                                 2                         3
  1681.  
  1682. As mentioned above, a reflection occurs when a ray emerges from the same point
  1683. it was sent in.  This can happen in several ways:
  1684.  
  1685.                                                                            
  1686.   - - - - - - - -         - - - - - - - -          - - - - - - - -
  1687.   - - - - O - - -         - - O - O - - -          - - - - - - - -
  1688. R * * * * - - - -         - - - * - - - -          O - - - - - - -
  1689.   - - - - O - - -         - - - * - - - -        R - - - - - - - -
  1690.   - - - - - - - -         - - - * - - - -          - - - - - - - -
  1691.   - - - - - - - -         - - - * - - - -          - - - - - - - -
  1692.   - - - - - - - -       R * * * * - - - -          - - - - - - - -
  1693.   - - - - - - - -         - - - - O - - -          - - - - - - - -
  1694.  
  1695. In the first example, the ray is deflected downwards by the upper
  1696. ball, then left by the lower ball, and finally retraces its path to
  1697. its point of origin.  The second example is similar.  The third
  1698. example is a bit anomalous but can be rationalized by realizing the
  1699. ray never gets a chance to get into the box.  Alternatively, the ray
  1700. can be thought of as being deflected downwards and immediately
  1701. emerging from the box.
  1702.  
  1703. A hit occurs when a ray runs straight into a ball:
  1704.  
  1705.   - - - - - - - -         - - - - - - - -          - - - - - - - -
  1706.   - - - - - - - -         - - - - - - - -          - - - - O - - -
  1707.   - - - - - - - -         - - - - O - - -        H * * * * - - - -
  1708.   - - - - - - - -       H * * * * O - - -          - - - * - - - -
  1709.   - - - - - - - -         - - - - O - - -          - - - O - - - -
  1710. H * * * O - - - -         - - - - - - - -          - - - - - - - -
  1711.   - - - - - - - -         - - - - - - - -          - - - - - - - -
  1712.   - - - - - - - -         - - - - - - - -          - - - - - - - -
  1713.  
  1714. Be sure to compare the second example of a hit with the first example of
  1715. a reflection." t nil)
  1716.  
  1717. ;;;***
  1718.  
  1719. ;;;### (autoloads (conx-load conx conx-region conx-buffer) "conx" "games/conx.el" (12013 11851))
  1720. ;;; Generated autoloads from games/conx.el
  1721.  
  1722. (autoload 'conx-buffer "conx" "\
  1723. Absorb the text in the current buffer into the tree." t nil)
  1724.  
  1725. (autoload 'conx-region "conx" "\
  1726. Absorb the text in the current region into the tree." t nil)
  1727.  
  1728. (autoload 'conx "conx" "\
  1729. Generate some random sentences in the *conx* buffer." t nil)
  1730.  
  1731. (autoload 'conx-load "conx" "\
  1732. Load in a CONX database written by the \\[conx-save] command.
  1733. This clears the database currently in memory." t nil)
  1734.  
  1735. ;;;***
  1736.  
  1737. ;;;### (autoloads (shuffle-vector cookie-snarf cookie-insert cookie) "cookie1" "games/cookie1.el" (12147 26582))
  1738. ;;; Generated autoloads from games/cookie1.el
  1739.  
  1740. (autoload 'cookie "cookie1" "\
  1741. Return a random phrase from PHRASE-FILE.  When the phrase file
  1742. is read in, display STARTMSG at beginning of load, ENDMSG at end." nil nil)
  1743.  
  1744. (autoload 'cookie-insert "cookie1" "\
  1745. Insert random phrases from PHRASE-FILE; COUNT of them.  When the phrase file
  1746. is read in, display STARTMSG at beginning of load, ENDMSG at end." nil nil)
  1747.  
  1748. (autoload 'cookie-snarf "cookie1" "\
  1749. Reads in the PHRASE-FILE, returns it as a vector of strings.
  1750. Emit STARTMSG and ENDMSG before and after.  Caches the result; second
  1751. and subsequent calls on the same file won't go to disk." nil nil)
  1752.  
  1753. (autoload 'shuffle-vector "cookie1" "\
  1754. Randomly permute the elements of VECTOR (all permutations equally likely)" nil nil)
  1755.  
  1756. ;;;***
  1757.  
  1758. ;;;### (autoloads (dissociated-press) "dissociate" "games/dissociate.el" (12147 26583))
  1759. ;;; Generated autoloads from games/dissociate.el
  1760.  
  1761. (autoload 'dissociated-press "dissociate" "\
  1762. Dissociate the text of the current buffer.
  1763. Output goes in buffer named *Dissociation*,
  1764. which is redisplayed each time text is added to it.
  1765. Every so often the user must say whether to continue.
  1766. If ARG is positive, require ARG chars of continuity.
  1767. If ARG is negative, require -ARG words of continuity.
  1768. Default is 2." t nil)
  1769.  
  1770. ;;;***
  1771.  
  1772. ;;;### (autoloads (doctor) "doctor" "games/doctor.el" (12147 26585))
  1773. ;;; Generated autoloads from games/doctor.el
  1774.  
  1775. (autoload 'doctor "doctor" "\
  1776. Switch to *doctor* buffer and start giving psychotherapy." t nil)
  1777.  
  1778. ;;;***
  1779.  
  1780. ;;;### (autoloads (dunnet) "dunnet" "games/dunnet.el" (12147 26589))
  1781. ;;; Generated autoloads from games/dunnet.el
  1782.  
  1783. (autoload 'dunnet "dunnet" "\
  1784. Switch to *dungeon* buffer and start game." t nil)
  1785.  
  1786. ;;;***
  1787.  
  1788. ;;;### (autoloads (flame) "flame" "games/flame.el" (12142 23857))
  1789. ;;; Generated autoloads from games/flame.el
  1790.  
  1791. (autoload 'flame "flame" "\
  1792. Generate ARG (default 1) sentences of half-crazed gibberish." t nil)
  1793.  
  1794. ;;;***
  1795.  
  1796. ;;;### (autoloads (gomoku) "gomoku" "games/gomoku.el" (12147 26585))
  1797. ;;; Generated autoloads from games/gomoku.el
  1798.  
  1799. (autoload 'gomoku "gomoku" "\
  1800. Start a Gomoku game between you and Emacs.
  1801. If a game is in progress, this command allow you to resume it.
  1802. If optional arguments N and M are given, an N by M board is used.
  1803.  
  1804. You and Emacs play in turn by marking a free square. You mark it with X
  1805. and Emacs marks it with O. The winner is the first to get five contiguous
  1806. marks horizontally, vertically or in diagonal.
  1807. You play by moving the cursor over the square you choose and hitting
  1808. \\<gomoku-mode-map>\\[gomoku-human-plays].
  1809. Use \\[describe-mode] for more info." t nil)
  1810.  
  1811. ;;;***
  1812.  
  1813. ;;;### (autoloads (hanoi) "hanoi" "games/hanoi.el" (12013 11856))
  1814. ;;; Generated autoloads from games/hanoi.el
  1815.  
  1816. (autoload 'hanoi "hanoi" "\
  1817. Towers of Hanoi diversion.  Argument is number of rings." t nil)
  1818.  
  1819. ;;;***
  1820.  
  1821. ;;;### (autoloads (life) "life" "games/life.el" (12147 26586))
  1822. ;;; Generated autoloads from games/life.el
  1823.  
  1824. (autoload 'life "life" "\
  1825. Run Conway's Life simulation.
  1826. The starting pattern is randomly selected.  Prefix arg (optional first
  1827. arg non-nil from a program) is the number of seconds to sleep between
  1828. generations (this defaults to 1)." t nil)
  1829.  
  1830. ;;;***
  1831.  
  1832. ;;;### (autoloads (mpuz) "mpuz" "games/mpuz.el" (12013 11857))
  1833. ;;; Generated autoloads from games/mpuz.el
  1834.  
  1835. (autoload 'mpuz "mpuz" "\
  1836. Multiplication puzzle with GNU Emacs." t nil)
  1837.  
  1838. ;;;***
  1839.  
  1840. ;;;### (autoloads (spook) "spook" "games/spook.el" (12147 26586))
  1841. ;;; Generated autoloads from games/spook.el
  1842.  
  1843. (autoload 'spook "spook" "\
  1844. Adds that special touch of class to your outgoing mail." t nil)
  1845.  
  1846. ;;;***
  1847.  
  1848. ;;;### (autoloads (psychoanalyze-pinhead insert-zippyism yow) "yow" "games/yow.el" (12147 26587))
  1849. ;;; Generated autoloads from games/yow.el
  1850.  
  1851. (autoload 'yow "yow" "\
  1852. Return or display a random Zippy quotation.  With prefix arg, insert it." t nil)
  1853.  
  1854. (autoload 'insert-zippyism "yow" "\
  1855. Prompt with completion for a known Zippy quotation, and insert it at point." t nil)
  1856.  
  1857. (autoload 'psychoanalyze-pinhead "yow" "\
  1858. Zippy goes to the analyst." t nil)
  1859.  
  1860. ;;;***
  1861.  
  1862. ;;;### (autoloads (gnus-batch-kill gnus) "gnus" "gnus/gnus.el" (12147 26408))
  1863. ;;; Generated autoloads from gnus/gnus.el
  1864.  
  1865. (autoload 'gnus "gnus" "\
  1866. Read network news.
  1867. If optional argument CONFIRM is non-nil, ask NNTP server." t nil)
  1868.  
  1869. (autoload 'gnus-batch-kill "gnus" "\
  1870. Run batched KILL.
  1871. Usage: emacs -batch -l gnus -f gnus-batch-kill NEWSGROUP ..." nil nil)
  1872.  
  1873. ;;;***
  1874.  
  1875. ;;;### (autoloads (gnus-post-news) "gnuspost" "gnus/gnuspost.el" (12193 28425))
  1876. ;;; Generated autoloads from gnus/gnuspost.el
  1877.  
  1878. (fset 'sendnews 'gnus-post-news)
  1879.  
  1880. (fset 'postnews 'gnus-post-news)
  1881.  
  1882. (autoload 'gnus-post-news "gnuspost" "\
  1883. Begin editing a new USENET news article to be posted.
  1884. Type \\[describe-mode] once editing the article to get a list of commands." t nil)
  1885.  
  1886. ;;;***
  1887.  
  1888. ;;;### (autoloads (gnusutil-initialize gnusutil-add-group) "gnusutil" "gnus/gnusutil.el" (12013 11612))
  1889. ;;; Generated autoloads from gnus/gnusutil.el
  1890.  
  1891. (autoload 'gnusutil-add-group "gnusutil" "\
  1892. Specify that news group NAME is encoded in CODING-SYSTEM.
  1893. Subject and article buffers are automatically converted appropriately.
  1894. If CODING-SYSTEM is cons, the car/cdr part is regarded as coding-system
  1895. for read/write respectively." nil nil)
  1896.  
  1897. (autoload 'gnusutil-initialize "gnusutil" "\
  1898. Do several settings for GNUS to enable automatic code conversion." nil nil)
  1899.  
  1900. ;;;***
  1901.  
  1902. ;;;### (autoloads (html-mode) "html-mode" "hm--html-menus/html-mode.el" (12318 54260))
  1903. ;;; Generated autoloads from hm--html-menus/html-mode.el
  1904.  
  1905. (autoload 'html-mode "html-mode" "\
  1906. Major mode for editing HTML hypertext documents.  Special commands:\\{html-mode-map}
  1907. Turning on html-mode calls the value of the variable html-mode-hook,
  1908. if that value is non-nil.
  1909.  
  1910. More extensive documentation is available in the file 'html-mode.el'.
  1911. The latest (possibly unstable) version of this file will always be available
  1912. on anonymous FTP server ftp.ncsa.uiuc.edu in /Mosaic/elisp." t nil)
  1913.  
  1914. ;;;***
  1915.  
  1916. ;;;### (autoloads (html-view-get-display html-view-goto-url html-view-view-buffer html-view-view-file html-view-start-mosaic) "html-view" "hm--html-menus/html-view.el" (12318 54261))
  1917. ;;; Generated autoloads from hm--html-menus/html-view.el
  1918.  
  1919. (autoload 'html-view-start-mosaic "html-view" "\
  1920. Start Mosaic." t nil)
  1921.  
  1922. (autoload 'html-view-view-file "html-view" "\
  1923. View an html file with Mosaic." t nil)
  1924.  
  1925. (autoload 'html-view-view-buffer "html-view" "\
  1926. View html buffer with Mosaic.
  1927. If BUFFER-TO-VIEW is nil, then the current buffer is used." t nil)
  1928.  
  1929. (autoload 'html-view-goto-url "html-view" "\
  1930. Goto an URL in Mosaic." t nil)
  1931.  
  1932. (autoload 'html-view-get-display "html-view" "\
  1933. Get the display for Mosaic." t nil)
  1934.  
  1935. ;;;***
  1936.  
  1937. ;;;### (autoloads (tmpl-expand-templates-in-buffer tmpl-expand-templates-in-region) "tmpl-minor-mode" "hm--html-menus/tmpl-minor-mode.el" (12212 18729))
  1938. ;;; Generated autoloads from hm--html-menus/tmpl-minor-mode.el
  1939.  
  1940. (autoload 'tmpl-expand-templates-in-region "tmpl-minor-mode" "\
  1941. Expand the templates in the region from BEGIN to END.
  1942. If BEGIN and and are nil, then the current region is used." t nil)
  1943.  
  1944. (autoload 'tmpl-expand-templates-in-buffer "tmpl-minor-mode" "\
  1945. Expand all templates in the current buffer." t nil)
  1946.  
  1947. ;;;***
  1948.  
  1949. ;;;### (autoloads (hmail:compose) "hmail" "hyperbole/hmail.el" (12178 36901))
  1950. ;;; Generated autoloads from hyperbole/hmail.el
  1951.  
  1952. (autoload 'hmail:compose "hmail" "\
  1953. Compose mail with ADDRESS and evaluation of EXPR.
  1954. Optional SUBJECT and HELP message may also be given." t nil)
  1955.  
  1956. ;;;***
  1957.  
  1958. ;;;### (autoloads (Info-handle-in-note smart-info-assist smart-info) "hmous-info" "hyperbole/hmous-info.el" (12256 52598))
  1959. ;;; Generated autoloads from hyperbole/hmous-info.el
  1960.  
  1961. (autoload 'smart-info "hmous-info" "\
  1962. Walks through Info documentation networks using one key or mouse key.
  1963.  
  1964. If key is pressed within:
  1965.  (1) the first line of an Info Menu Entry or Cross Reference, the desired node
  1966.        is found;
  1967.  (2) the Up, Next, or Previous entries of a Node Header (first line),
  1968.        the desired node is found;
  1969.  (3) the File entry of a Node Header (first line),       
  1970.        the 'Top' node within that file is found;
  1971.  (4) at the end of the current node, the Next node is found (this will
  1972.        descend subtrees if the function 'Info-global-next' is bound);
  1973.  (5) anywhere else (e.g. at the end of a line), the current node entry is
  1974.        scrolled up one windowful.
  1975.  
  1976. Returns t if key is pressed within an Info Node Header, Cross Reference,
  1977. or a Menu; otherwise returns nil." t nil)
  1978.  
  1979. (autoload 'smart-info-assist "hmous-info" "\
  1980. Walks through Info documentation networks using one assist-key or mouse assist-key.
  1981.  
  1982. If assist-key is pressed within:
  1983.  (1) the first line of an Info Menu Entry or Cross Reference, the desired node
  1984.        is found;
  1985.  (2) the Up, Next, or Previous entries of a Node Header (first line),
  1986.        the last node in the history list is found;
  1987.  (3) the File entry of a Node Header (first line),       
  1988.        the 'DIR' root-level node is found;
  1989.  (4) at the end of the current node, the Previous node is found (this will
  1990.        return from subtrees if the function 'Info-global-prev is bound);
  1991.  (5) anywhere else (e.g. at the end of a line), the current node entry is
  1992.        scrolled down one windowful.
  1993.  
  1994. Returns t if assist-key is pressed within an Info Node Header, Cross Reference,
  1995. or a Menu; otherwise returns nil." t nil)
  1996.  
  1997. (autoload 'Info-handle-in-note "hmous-info" "\
  1998. Follows an Info cross-reference.
  1999. If point is within the first line of an Info note (cross-reference), follows
  2000. cross-reference and returns t; otherwise returns nil." nil nil)
  2001.  
  2002. ;;;***
  2003.  
  2004. ;;;### (autoloads (smart-tags-file smart-tags-file-path smart-objc-oobr smart-objc smart-fortran-at-tag-p smart-c++-oobr smart-c++ smart-c-at-tag-p smart-asm-at-tag-p) "hmouse-tag" "hyperbole/hmouse-tag.el" (12294 59306))
  2005. ;;; Generated autoloads from hyperbole/hmouse-tag.el
  2006.  
  2007. (autoload 'smart-asm-at-tag-p "hmouse-tag" "\
  2008. Return assembly tag name that point is within, else nil." nil nil)
  2009.  
  2010. (autoload 'smart-c-at-tag-p "hmouse-tag" "\
  2011. Return C tag name that point is within, else nil." nil nil)
  2012.  
  2013. (autoload 'smart-c++ "hmouse-tag" "\
  2014. Jumps to the definition of optional C++ IDENTIFIER or the one at point.
  2015. Optional second arg NEXT means jump to next matching C++ tag.
  2016.  
  2017. It assumes that its caller has already checked that the key was pressed in an
  2018. appropriate buffer and has moved the cursor to the selected buffer.
  2019.  
  2020. If:
  2021.  (1) on a '#include' statement, the include file is displayed;
  2022.      Look for include file in directory lists 'smart-c-cpp-include-dirs'
  2023.      and 'smart-c-include-dirs'.
  2024.  (2) on a C++ identifier, the identifier definition is displayed,
  2025.      assuming the identifier is found within an 'etags' generated tag file
  2026.      in the current directory or any of its ancestor directories.
  2027.  (3) if 'smart-c-use-lib-man' is non-nil, the C++ identifier is
  2028.      recognized as a library symbol, and a man page is found for the
  2029.      identifier, then the man page is displayed." t nil)
  2030.  
  2031. (autoload 'smart-c++-oobr "hmouse-tag" "\
  2032. Jumps to the definition of selected C++ construct via OO-Browser support.
  2033. Optional JUNK is ignored.  Does nothing if the OO-Browser is not available.
  2034.  
  2035. It assumes that its caller has already checked that the key was pressed in an
  2036. appropriate buffer and has moved the cursor to the selected buffer.
  2037.  
  2038. If key is pressed:
  2039.  (1) on a '#include' statement, the include file is displayed;
  2040.      Look for include file in directory lists 'smart-c-cpp-include-dirs'
  2041.      and 'smart-c-include-dirs'.
  2042.  (2) within a method declaration, its definition is displayed;
  2043.  (3) on a class name, the class definition is shown.
  2044.  
  2045.  (2) and (3) require that an OO-Browser Environment has been loaded with
  2046.      the {M-x br-env-load RTN} command." t nil)
  2047.  
  2048. (autoload 'smart-fortran-at-tag-p "hmouse-tag" "\
  2049. Return Fortran tag name that point is within, else nil." nil nil)
  2050.  
  2051. (autoload 'smart-objc "hmouse-tag" "\
  2052. Jumps to the definition of optional Objective-C IDENTIFIER or the one at point.
  2053. Optional second arg NEXT means jump to next matching Objective-C tag.
  2054.  
  2055. It assumes that its caller has already checked that the key was pressed in an
  2056. appropriate buffer and has moved the cursor to the selected buffer.
  2057.  
  2058. If:
  2059.  (1) on a '#include' statement, the include file is displayed;
  2060.      Look for include file in directory lists 'smart-c-cpp-include-dirs'
  2061.      and 'smart-c-include-dirs'.
  2062.  (2) on an Objective-C identifier, the identifier definition is displayed,
  2063.      assuming the identifier is found within an 'etags' generated tag file
  2064.      in the current directory or any of its ancestor directories.
  2065.  (3) if 'smart-c-use-lib-man' is non-nil, the Objective-C identifier is
  2066.      recognized as a library symbol, and a man page is found for the
  2067.      identifier, then the man page is displayed." t nil)
  2068.  
  2069. (autoload 'smart-objc-oobr "hmouse-tag" "\
  2070. Jumps to the definition of selected Objective-C construct via OO-Browser support.
  2071. Optional JUNK is ignored.  Does nothing if the OO-Browser is not available.
  2072.  
  2073. It assumes that its caller has already checked that the key was pressed in an
  2074. appropriate buffer and has moved the cursor to the selected buffer.
  2075.  
  2076. If key is pressed:
  2077.  (1) on a '#include' statement, the include file is displayed;
  2078.      Look for include file in directory lists 'smart-c-cpp-include-dirs'
  2079.      and 'smart-c-include-dirs'.
  2080.  (2) within a method declaration, its definition is displayed;
  2081.  (3) on a class name, the class definition is shown.
  2082.  
  2083.  (2) and (3) require that an OO-Browser Environment has been loaded with
  2084.      the {M-x br-env-load RTN} command." t nil)
  2085.  
  2086. (autoload 'smart-tags-file-path "hmouse-tag" "\
  2087. Expand relative FILE name by looking it up in the nearest tags file.
  2088. Return FILE unchanged if it exists relative to the current directory or
  2089. cannot be expanded via a tags file." nil nil)
  2090.  
  2091. (autoload 'smart-tags-file "hmouse-tag" "\
  2092. Return appropriate tags file name for CURR-FILENAME or 'tags-file-name'." nil nil)
  2093.  
  2094. ;;;***
  2095.  
  2096. ;;;### (autoloads (var:append) "hvar" "hyperbole/hvar.el" (12178 36921))
  2097. ;;; Generated autoloads from hyperbole/hvar.el
  2098.  
  2099. (autoload 'var:append "hvar" "\
  2100. Appends to value held by VAR-SYMBOL-NAME, LIST-TO-ADD.  Returns new value.
  2101. If VAR-SYMBOL-NAME is unbound, it is set to LIST-TO-ADD.
  2102. Often used to append to 'hook' variables." nil nil)
  2103.  
  2104. ;;;***
  2105.  
  2106. ;;;### (autoloads (wconfig-yank-pop wconfig-ring-save wconfig-delete-pop wconfig-restore-by-name wconfig-delete-by-name wconfig-add-by-name) "wconfig" "hyperbole/wconfig.el" (12178 36925))
  2107. ;;; Generated autoloads from hyperbole/wconfig.el
  2108.  
  2109. (autoload 'wconfig-add-by-name "wconfig" "\
  2110. Saves the current window configuration under the string NAME.
  2111. When called interactively and a window configuration already exists under
  2112. NAME, confirms whether or not to replace it." t nil)
  2113.  
  2114. (autoload 'wconfig-delete-by-name "wconfig" "\
  2115. Deletes window configuration saved under NAME." t nil)
  2116.  
  2117. (autoload 'wconfig-restore-by-name "wconfig" "\
  2118. Restores window configuration saved under NAME." t nil)
  2119.  
  2120. (autoload 'wconfig-delete-pop "wconfig" "\
  2121. Replaces current window config with most recently saved config in ring.
  2122. Then deletes this new configuration from the ring." t nil)
  2123.  
  2124. (autoload 'wconfig-ring-save "wconfig" "\
  2125. Saves the current window configuration onto the save ring.
  2126. Use {\\[wconfig-yank-pop]} to restore it at a later time." t nil)
  2127.  
  2128. (autoload 'wconfig-yank-pop "wconfig" "\
  2129. Replaces current window config with prefix arg Nth prior one in save ring.
  2130. Interactively, default value of N = 1, meaning the last saved window
  2131. configuration is displayed.
  2132.  
  2133. The sequence of window configurations wraps around, so that after the oldest
  2134. one comes the newest one." t nil)
  2135.  
  2136. ;;;***
  2137.  
  2138. ;;;### (autoloads (rolo-logic) "wrolo-logic" "hyperbole/wrolo-logic.el" (12178 36926))
  2139. ;;; Generated autoloads from hyperbole/wrolo-logic.el
  2140.  
  2141. (autoload 'rolo-logic "wrolo-logic" "\
  2142. Apply FUNC to all entries in optional IN-BUFS, display entries where FUNC is non-nil.
  2143. If IN-BUFS is nil, 'rolo-file-list' is used.  If optional COUNT-ONLY is
  2144. non-nil, don't display entries, return count of matching entries only.  If
  2145. optional INCLUDE-SUB-ENTRIES flag is non-nil, FUNC will be applied across all
  2146. sub-entries at once.  Default is to apply FUNC to each entry and sub-entry
  2147. separately.  Entries are displayed with all of their sub-entries unless
  2148. INCLUDE-SUB-ENTRIES is nil and optional NO-SUB-ENTRIES-OUT flag is non-nil.
  2149. FUNC should use the free variables 'start' and 'end' which contain the limits
  2150. of the region on which it should operate.  Returns number of applications of
  2151. FUNC that return non-nil." t nil)
  2152.  
  2153. ;;;***
  2154.  
  2155. ;;;### (autoloads (rolo-yank rolo-sort rolo-kill rolo-grep rolo-fgrep rolo-edit rolo-display-matches rolo-add) "wrolo" "hyperbole/wrolo.el" (12222 24184))
  2156. ;;; Generated autoloads from hyperbole/wrolo.el
  2157.  
  2158. (autoload 'rolo-add "wrolo" "\
  2159. Adds a new entry in personal rolodex for NAME.
  2160. Last name first is best, e.g. \"Smith, John\".
  2161. With prefix argument, prompts for optional FILE to add entry within.
  2162. NAME may be of the form: parent/child to insert child below a parent
  2163. entry which begins with the parent string." t nil)
  2164.  
  2165. (autoload 'rolo-display-matches "wrolo" "\
  2166. Display optional DISPLAY-BUF buffer of previously found rolodex matches.
  2167. If DISPLAY-BUF is nil, use the value in 'rolo-display-buffer'.
  2168. Second arg RETURN-TO-BUFFER is the buffer to leave point within after the display." t nil)
  2169.  
  2170. (autoload 'rolo-edit "wrolo" "\
  2171. Edits a rolodex entry given by optional NAME within 'rolo-file-list'.
  2172. With prefix argument, prompts for optional FILE to locate entry within.
  2173. With no NAME arg, simply displays FILE or first entry in 'rolo-file-list' in an
  2174. editable mode.  NAME may be of the form: parent/child to edit child below a
  2175. parent entry which begins with the parent string." t nil)
  2176.  
  2177. (autoload 'rolo-fgrep "wrolo" "\
  2178. Display rolodex entries matching STRING.
  2179. To a maximum of optional prefix arg MAX-MATCHES, in file(s) from optional
  2180. ROLO-FILE or rolo-file-list.  Default is to find all matching entries.  Each
  2181. entry is displayed with all of its sub-entries.  Optional COUNT-ONLY non-nil
  2182. means don't retrieve and don't display matching entries.  Optional NO-DISPLAY
  2183. non-nil means retrieve entries but don't display.
  2184.  
  2185. Nil value of MAX-MATCHES means find all matches, t value means find all matches
  2186. but omit file headers, negative values mean find up to the inverse of that
  2187. number of entries and omit file headers.
  2188.  
  2189. Returns number of entries matched.  See also documentation for the variable
  2190. rolo-file-list." t nil)
  2191.  
  2192. (autoload 'rolo-grep "wrolo" "\
  2193. Display rolodex entries matching REGEXP.
  2194. To a maximum of prefix arg MAX-MATCHES, in buffer(s) from optional ROLO-BUFS or
  2195. rolo-file-list.  Default is to find all matching entries.  Each entry is
  2196. displayed with all of its sub-entries.  Optional COUNT-ONLY non-nil means don't
  2197. retrieve and don't display matching entries.  Optional NO-DISPLAY non-nil
  2198. means retrieve entries but don't display.
  2199.  
  2200. Nil value of MAX-MATCHES means find all matches, t value means find all matches
  2201. but omit file headers, negative values mean find up to the inverse of that
  2202. number of entries and omit file headers.
  2203.  
  2204. Returns number of entries matched.  See also documentation for the variable
  2205. rolo-file-list." t nil)
  2206.  
  2207. (autoload 'rolo-kill "wrolo" "\
  2208. Kills a rolodex entry given by NAME within 'rolo-file-list'.
  2209. With prefix argument, prompts for optional FILE to locate entry within.
  2210. NAME may be of the form: parent/child to kill child below a parent entry
  2211. which begins with the parent string.
  2212. Returns t if entry is killed, nil otherwise." t nil)
  2213.  
  2214. (autoload 'rolo-sort "wrolo" "\
  2215. Sorts up to 14 levels of entries in ROLO-FILE (default is personal rolo).
  2216. Assumes entries are delimited by one or more '*'characters.
  2217. Returns list of number of groupings at each entry level." t nil)
  2218.  
  2219. (autoload 'rolo-yank "wrolo" "\
  2220. Inserts at point the first rolodex entry matching NAME.
  2221. With optional prefix arg, REGEXP-P, treats NAME as a regular expression instead
  2222. of a string." t nil)
  2223.  
  2224. ;;;***
  2225.  
  2226. ;;;### (autoloads (mh-letter-mode mh-smail-other-window mh-smail) "mh-comp" "mh-e/mh-comp.el" (12244 51708))
  2227. ;;; Generated autoloads from mh-e/mh-comp.el
  2228.  
  2229. (autoload 'mh-smail "mh-comp" "\
  2230. Compose and send mail with the MH mail system.
  2231. This function is an entry point to mh-e, the Emacs front end
  2232. to the MH mail system.
  2233.  
  2234. See documentation of `\\[mh-send]' for more details on composing mail." t nil)
  2235.  
  2236. (autoload 'mh-smail-other-window "mh-comp" "\
  2237. Compose and send mail in other window with the MH mail system.
  2238. This function is an entry point to mh-e, the Emacs front end
  2239. to the MH mail system.
  2240.  
  2241. See documentation of `\\[mh-send]' for more details on composing mail." t nil)
  2242.  
  2243. (autoload 'mh-letter-mode "mh-comp" "\
  2244. Mode for composing letters in mh-e.\\<mh-letter-mode-map>
  2245. When you have finished composing, type \\[mh-send-letter] to send the message
  2246. using the MH mail handling system.
  2247. See the documentation for \\[mh-edit-mhn] for information on composing MIME
  2248. messages.
  2249.  
  2250. \\{mh-letter-mode-map}
  2251.  
  2252. Variables controlling this mode (defaults in parentheses):
  2253.  
  2254.  mh-delete-yanked-msg-window (nil)
  2255.     If non-nil, \\[mh-yank-cur-msg] will delete any windows displaying
  2256.     the yanked message.
  2257.  
  2258.  mh-yank-from-start-of-msg (t)
  2259.     If non-nil, \\[mh-yank-cur-msg] will include the entire message.
  2260.     If `body', just yank the body (no header).
  2261.     If nil, only the portion of the message following the point will be yanked.
  2262.     If there is a region, this variable is ignored.
  2263.  
  2264.  mh-ins-buf-prefix (\"> \")
  2265.     String to insert before each non-blank line of a message as it is
  2266.     inserted in a draft letter.
  2267.  
  2268.  mh-signature-file-name (\"~/.signature\")
  2269.     File to be inserted into message by \\[mh-insert-signature].
  2270.  
  2271. Upon invoking mh-letter-mode, text-mode-hook and mh-letter-mode-hook are
  2272. invoked with no args, if those values are non-nil." t nil)
  2273.  
  2274. ;;;***
  2275.  
  2276. ;;;### (autoloads (mh-version mh-rmail) "mh-e" "mh-e/mh-e.el" (12254 12801))
  2277. ;;; Generated autoloads from mh-e/mh-e.el
  2278.  
  2279. (autoload 'mh-rmail "mh-e" "\
  2280. Inc(orporate) new mail with MH, or, with arg, scan an MH mail folder.
  2281. This function is an entry point to mh-e, the Emacs front end
  2282. to the MH mail system." t nil)
  2283.  
  2284. (autoload 'mh-version "mh-e" "\
  2285. Display version information about mh-e and the MH mail handling system." t nil)
  2286.  
  2287. ;;;***
  2288.  
  2289. ;;;### (autoloads nil "mh-mime" "mh-e/mh-mime.el" (12244 51711))
  2290. ;;; Generated autoloads from mh-e/mh-mime.el
  2291.  
  2292. (defvar mh-mime-content-types '(("text/plain") ("text/richtext") ("multipart/mixed") ("multipart/alternative") ("multipart/digest") ("multipart/parallel") ("message/rfc822") ("message/partial") ("message/external-body") ("application/octet-stream") ("application/postscript") ("image/jpeg") ("image/gif") ("audio/basic") ("video/mpeg")) "\
  2293. Legal MIME content types.  See documentation for \\[mh-edit-mhn].")
  2294.  
  2295. ;;;***
  2296.  
  2297. ;;;### (autoloads nil "mh-utils" "mh-e/mh-utils.el" (12244 51712))
  2298. ;;; Generated autoloads from mh-e/mh-utils.el
  2299.  
  2300. (put 'mh-progs 'risky-local-variable t)
  2301.  
  2302. (put 'mh-lib 'risky-local-variable t)
  2303.  
  2304. ;;;***
  2305.  
  2306. ;;;### (autoloads (ada-make-filename-from-adaname ada-mode) "ada-mode" "modes/ada-mode.el" (12346 23688))
  2307. ;;; Generated autoloads from modes/ada-mode.el
  2308.  
  2309. (autoload 'ada-mode "ada-mode" "\
  2310. Ada Mode is the major mode for editing Ada code.
  2311.  
  2312. Bindings are as follows: (Note: 'LFD' is control-j.)
  2313.  
  2314.  Indent line                                          '\\[ada-tab]'
  2315.  Indent line, insert newline and indent the new line. '\\[newline-and-indent]'
  2316.  
  2317.  Re-format the parameter-list point is in             '\\[ada-format-paramlist]'
  2318.  Indent all lines in region                           '\\[ada-indent-region]'
  2319.  Call external pretty printer program                 '\\[ada-call-pretty-printer]'
  2320.  
  2321.  Adjust case of identifiers and keywords in region    '\\[ada-adjust-case-region]'
  2322.  Adjust case of identifiers and keywords in buffer    '\\[ada-adjust-case-buffer]'
  2323.  
  2324.  Call EXTERNAL pretty printer (if you have one)       '\\[ada-call-pretty-printer]'
  2325.  
  2326.  Fill comment paragraph                               '\\[ada-fill-comment-paragraph]'
  2327.  Fill comment paragraph and justify each line         '\\[ada-fill-comment-paragraph-justify]'
  2328.  Fill comment paragraph, justify and append postfix   '\\[ada-fill-comment-paragraph-postfix]'
  2329.  
  2330.  Next func/proc/task '\\[ada-next-procedure]'    Previous func/proc/task '\\[ada-previous-procedure]'
  2331.  Next package        '\\[ada-next-package]'  Previous package        '\\[ada-previous-package]'
  2332.  
  2333.  Goto matching start of current 'end ...;'            '\\[ada-move-to-start]'
  2334.  Goto end of current block                            '\\[ada-move-to-end]'
  2335.  
  2336. Comments are handled using standard GNU Emacs conventions, including:
  2337.  Start a comment                                      '\\[indent-for-comment]'
  2338.  Comment region                                       '\\[comment-region]'
  2339.  Uncomment region                                     '\\[ada-uncomment-region]'
  2340.  Continue comment on next line                        '\\[indent-new-comment-line]'
  2341.  
  2342. If you use imenu.el:
  2343.  Display index-menu of functions & procedures         '\\[imenu]'
  2344.  
  2345. If you use find-file.el:
  2346.  Switch to other file (Body <-> Spec)                 '\\[ff-find-other-file]'
  2347.                                                    or '\\[ff-mouse-find-other-file]
  2348.  Switch to other file in other window                 '\\[ada-ff-other-window]'
  2349.                                                    or '\\[ff-mouse-find-other-file-other-window]
  2350.  If you use this function in a spec and no body is available, it gets created
  2351.  with body stubs.
  2352.  
  2353. If you use ada-xref.el:
  2354.  Goto declaration:          '\\[ada-point-and-xref]' on the identifier
  2355.                          or '\\[ada-goto-declaration]' with point on the identifier
  2356.  Complete identifier:       '\\[ada-complete-identifier]'
  2357.  Execute Gnatf:             '\\[ada-gnatf-current]'" t nil)
  2358.  
  2359. (autoload 'ada-make-filename-from-adaname "ada-mode" "\
  2360. determine the filename of a package/procedure from its own Ada name." t nil)
  2361.  
  2362. ;;;***
  2363.  
  2364. ;;;### (autoloads (asm-mode) "asm-mode" "modes/asm-mode.el" (12147 26437))
  2365. ;;; Generated autoloads from modes/asm-mode.el
  2366.  
  2367. (autoload 'asm-mode "asm-mode" "\
  2368. Major mode for editing typical assembler code.
  2369. Features a private abbrev table and the following bindings:
  2370.  
  2371. \\[asm-colon]    outdent a preceding label, tab to next tab stop.
  2372. \\[tab-to-tab-stop]    tab to next tab stop.
  2373. \\[asm-newline]    newline, then tab to next tab stop.
  2374. \\[asm-comment]    smart placement of assembler comments.
  2375.  
  2376. The character used for making comments is set by the variable
  2377. `asm-comment-char' (which defaults to `?;').
  2378.  
  2379. Alternatively, you may set this variable in `asm-set-comment-hook', which is
  2380. called near the beginning of mode initialization.
  2381.  
  2382. Turning on Asm mode runs the hook `asm-mode-hook' at the end of initialization.
  2383.  
  2384. Special commands:\\{asm-mode-map}
  2385. " t nil)
  2386.  
  2387. ;;;***
  2388.  
  2389. ;;;### (autoloads (auto-show-mode) "auto-show" "modes/auto-show.el" (12282 39210))
  2390. ;;; Generated autoloads from modes/auto-show.el
  2391.  
  2392. (autoload 'auto-show-mode "auto-show" "\
  2393. Turn automatic horizontal scroll mode on or off.
  2394. With arg, turn auto scrolling on if arg is positive, off otherwise." t nil)
  2395.  
  2396. ;;;***
  2397.  
  2398. ;;;### (autoloads (awk-mode) "awk-mode" "modes/awk-mode.el" (12147 26417))
  2399. ;;; Generated autoloads from modes/awk-mode.el
  2400.  
  2401. (autoload 'awk-mode "awk-mode" "\
  2402. Major mode for editing AWK code.
  2403. This is much like C mode except for the syntax of comments.  It uses
  2404. the same keymap as C mode and has the same variables for customizing
  2405. indentation.  It has its own abbrev table and its own syntax table.
  2406.  
  2407. Turning on AWK mode calls the value of the variable `awk-mode-hook'
  2408. with no args, if that value is non-nil." t nil)
  2409.  
  2410. ;;;***
  2411.  
  2412. ;;;### (autoloads (bibtex-mode) "bibtex" "modes/bibtex.el" (12147 26420))
  2413. ;;; Generated autoloads from modes/bibtex.el
  2414.  
  2415. (autoload 'bibtex-mode "bibtex" "\
  2416. Major mode for editing bibtex files.
  2417.  
  2418. \\{bibtex-mode-map}
  2419.  
  2420. A command such as \\[bibtex-Book] will outline the fields for a BibTeX book entry.
  2421.  
  2422. The optional fields start with the string OPT, and thus ignored by BibTeX.
  2423. The OPT string may be removed from a field with \\[bibtex-remove-OPT].
  2424. \\[bibtex-kill-optional-field] kills the current optional field entirely.
  2425. \\[bibtex-remove-double-quotes] removes the double-quotes around the text of
  2426. the current field.  \\[bibtex-empty-field] replaces the text of the current
  2427. field with the default \"\".
  2428.  
  2429. The command \\[bibtex-clean-entry] cleans the current entry, i.e. (i) removes
  2430. double-quotes from entirely numerical fields, (ii) removes OPT from all
  2431. non-empty optional fields, (iii) removes all empty optional fields, and (iv)
  2432. checks that no non-optional fields are empty.
  2433.  
  2434. Use \\[bibtex-find-text] to position the dot at the end of the current field.
  2435. Use \\[bibtex-next-field] to move to end of the next field.
  2436.  
  2437. The following may be of interest as well:
  2438.  
  2439.   Functions:
  2440.     find-bibtex-duplicates
  2441.     find-bibtex-entry-location
  2442.     hide-bibtex-entry-bodies
  2443.     sort-bibtex-entries
  2444.     validate-bibtex-buffer
  2445.  
  2446.   Variables:
  2447.     bibtex-clean-entry-zap-empty-opts
  2448.     bibtex-entry-field-alist
  2449.     bibtex-include-OPTannote
  2450.     bibtex-include-OPTcrossref
  2451.     bibtex-include-OPTkey
  2452.     bibtex-maintain-sorted-entries
  2453.     bibtex-mode-user-optional-fields
  2454.  
  2455. Fields:
  2456.     address
  2457.            Publisher's address
  2458.     annote
  2459.            Long annotation used for annotated bibliographies (begins sentence)
  2460.     author
  2461.            Name(s) of author(s), in BibTeX name format
  2462.     booktitle
  2463.            Book title when the thing being referenced isn't the whole book.
  2464.            For book entries, the title field should be used instead.
  2465.     chapter
  2466.            Chapter number
  2467.     crossref
  2468.        The database key of the entry being cross referenced.
  2469.     edition
  2470.            Edition of a book (e.g., \"second\")
  2471.     editor
  2472.            Name(s) of editor(s), in BibTeX name format.
  2473.            If there is also an author field, then the editor field should be
  2474.            for the book or collection that the work appears in
  2475.     howpublished
  2476.             How something strange has been published (begins sentence)
  2477.     institution
  2478.            Sponsoring institution
  2479.     journal
  2480.            Journal name (macros are provided for many)
  2481.     key
  2482.            Alphabetizing and labeling key (needed when no author or editor)
  2483.     month
  2484.            Month (macros are provided)
  2485.     note
  2486.            To help the reader find a reference (begins sentence)
  2487.     number
  2488.            Number of a journal or technical report
  2489.     organization
  2490.            Organization (sponsoring a conference)
  2491.     pages
  2492.            Page number or numbers (use `--' to separate a range)
  2493.     publisher
  2494.            Publisher name
  2495.     school
  2496.            School name (for theses)
  2497.     series
  2498.            The name of a series or set of books.
  2499.            An individual book will will also have it's own title
  2500.     title
  2501.            The title of the thing being referenced
  2502.     type
  2503.            Type of a technical report (e.g., \"Research Note\") to be used
  2504.            instead of the default \"Technical Report\"
  2505.     volume
  2506.            Volume of a journal or multivolume work
  2507.     year
  2508.            Year---should contain only numerals
  2509. ---------------------------------------------------------
  2510. Entry to this mode calls the value of bibtex-mode-hook if that value is
  2511. non-nil." t nil)
  2512.  
  2513. ;;;***
  2514.  
  2515. ;;;### (autoloads (common-lisp-indent-function) "cl-indent" "modes/cl-indent.el" (12147 26423))
  2516. ;;; Generated autoloads from modes/cl-indent.el
  2517.  
  2518. (autoload 'common-lisp-indent-function "cl-indent" nil nil nil)
  2519.  
  2520. ;;;***
  2521.  
  2522. ;;;### (autoloads (c-macro-expand) "cmacexp" "modes/cmacexp.el" (12147 26424))
  2523. ;;; Generated autoloads from modes/cmacexp.el
  2524.  
  2525. (autoload 'c-macro-expand "cmacexp" "\
  2526. Expand C macros in the region, using the C preprocessor.
  2527. Normally display output in temp buffer, but
  2528. prefix arg means replace the region with it.
  2529.  
  2530. `c-macro-preprocessor' specifies the preprocessor to use.
  2531. Prompt for arguments to the preprocessor (e.g. `-DDEBUG -I ./include')
  2532. if the user option `c-macro-prompt-flag' is non-nil.
  2533.  
  2534. Noninteractive args are START, END, SUBST.
  2535. For use inside Lisp programs, see also `c-macro-expansion'." t nil)
  2536.  
  2537. ;;;***
  2538.  
  2539. ;;;### (autoloads (f90-mode) "f90" "modes/f90.el" (12190 24328))
  2540. ;;; Generated autoloads from modes/f90.el
  2541.  
  2542. (autoload 'f90-mode "f90" "\
  2543. Major mode for editing Fortran 90 code in free format.
  2544.  
  2545. \\[f90-indent-new-line] corrects current indentation and creates new indented line.
  2546. \\[f90-indent-line] indents the current line correctly. 
  2547. \\[f90-indent-subprogram] indents the current subprogram. 
  2548.  
  2549. Type `? or `\\[help-command] to display a list of built-in abbrevs for F90 keywords.
  2550.  
  2551. Key definitions:
  2552. \\{f90-mode-map}
  2553.  
  2554. Variables controlling indentation style and extra features:
  2555.  
  2556.  f90-do-indent
  2557.     Extra indentation within do blocks.  (default 3)
  2558.  f90-if-indent
  2559.     Extra indentation within if/select case/where/forall blocks. (default 3)
  2560.  f90-type-indent
  2561.     Extra indentation within type/interface/block-data blocks.  (default 3)
  2562.  f90-program-indent
  2563.     Extra indentation within program/module/subroutine/function blocks.
  2564.       (default 2)
  2565.  f90-continuation-indent
  2566.     Extra indentation applied to continuation lines.  (default 5)
  2567.  f90-comment-region
  2568.     String inserted by \\[f90-comment-region] at start of each line in 
  2569.     region.  (default \"!!!$\")
  2570.  f90-indented-comment
  2571.     String holding the type of comment to be intended like code.
  2572.     This is a regular expression. (default \"!\")
  2573.  f90-directive-comment
  2574.     String of comment-like directive like \"!HPF$\", not to be indented.
  2575.     (default nil)
  2576.  f90-break-delimiters
  2577.     Regexp holding list of delimiters at which lines may be broken.
  2578.     (default \"[-+*/><=,% \\t]\")
  2579.  f90-break-before-delimiters
  2580.     Non-nil causes `f90-do-auto-fill' to break lines before delimiters.
  2581.     (default t)
  2582.  f90-beginning-ampersand 
  2583.     Automatic insertion of & at beginning of continuation lines. (default t)
  2584.  f90-smart-end 
  2585.     From an END statement, check and fill the end using matching block start.
  2586.     Allowed values are 'blink, 'no-blink, and nil, which determine
  2587.     whether to blink the matching beginning.) (default 'blink)
  2588.  f90-auto-keyword-case
  2589.     Automatic change of case of keywords. (default nil)
  2590.     The possibilities are 'downcase-word, 'upcase-word, 'capitalize-word.
  2591.  f90-auto-hilit19  (default nil)
  2592.     Automatic highlighting (if hilit19 is used) at every indent or newline.
  2593.  f90-leave-line-no
  2594.     Do not left-justify line numbers. (default nil)
  2595.  f90-startup-message
  2596.     Set to nil to inhibit message first time F90 mode is used. (default t)
  2597.  f90-keywords
  2598.     List of keywords used for highlighting/upcase-keywords etc.
  2599.  
  2600. Turning on F90 mode calls the value of the variable `f90-mode-hook'
  2601. with no args, if that value is non-nil." t nil)
  2602.  
  2603. ;;;***
  2604.  
  2605. ;;;### (autoloads (fortran-mode) "fortran" "modes/fortran.el" (12147 26425))
  2606. ;;; Generated autoloads from modes/fortran.el
  2607.  
  2608. (defvar fortran-tab-mode-default nil "\
  2609. *Default tabbing/carriage control style for empty files in Fortran mode.
  2610. A value of t specifies tab-digit style of continuation control.
  2611. A value of nil specifies that continuation lines are marked
  2612. with a character in column 6.")
  2613.  
  2614. (autoload 'fortran-mode "fortran" "\
  2615. Major mode for editing Fortran code.
  2616. \\[fortran-indent-line] indents the current Fortran line correctly. 
  2617. DO statements must not share a common CONTINUE.
  2618.  
  2619. Type ;? or ;\\[help-command] to display a list of built-in abbrevs for Fortran keywords.
  2620.  
  2621. Key definitions:
  2622. \\{fortran-mode-map}
  2623.  
  2624. Variables controlling indentation style and extra features:
  2625.  
  2626.  comment-start
  2627.     Normally nil in Fortran mode.  If you want to use comments
  2628.     starting with `!', set this to the string \"!\".
  2629.  fortran-do-indent
  2630.     Extra indentation within do blocks.  (default 3)
  2631.  fortran-if-indent
  2632.     Extra indentation within if blocks.  (default 3)
  2633.  fortran-structure-indent
  2634.     Extra indentation within structure, union, map and interface blocks.
  2635.     (default 3)
  2636.  fortran-continuation-indent
  2637.     Extra indentation applied to continuation statements.  (default 5)
  2638.  fortran-comment-line-extra-indent
  2639.     Amount of extra indentation for text within full-line comments. (default 0)
  2640.  fortran-comment-indent-style
  2641.     nil    means don't change indentation of text in full-line comments,
  2642.     fixed  means indent that text at `fortran-comment-line-extra-indent' beyond
  2643.            the value of `fortran-minimum-statement-indent-fixed' (for fixed
  2644.            format continuation style) or `fortran-minimum-statement-indent-tab'
  2645.            (for TAB format continuation style).
  2646.     relative  means indent at `fortran-comment-line-extra-indent' beyond the
  2647.            indentation for a line of code.
  2648.     (default 'fixed)
  2649.  fortran-comment-indent-char
  2650.     Single-character string to be inserted instead of space for
  2651.     full-line comment indentation.  (default \" \")
  2652.  fortran-minimum-statement-indent-fixed
  2653.     Minimum indentation for Fortran statements in fixed format mode. (def.6)
  2654.  fortran-minimum-statement-indent-tab
  2655.     Minimum indentation for Fortran statements in TAB format mode. (default 9)
  2656.  fortran-line-number-indent
  2657.     Maximum indentation for line numbers.  A line number will get
  2658.     less than this much indentation if necessary to avoid reaching
  2659.     column 5.  (default 1)
  2660.  fortran-check-all-num-for-matching-do
  2661.     Non-nil causes all numbered lines to be treated as possible \"continue\"
  2662.     statements.  (default nil)
  2663.  fortran-blink-matching-if 
  2664.     From a Fortran ENDIF statement, blink the matching IF statement.
  2665.     Also, from an ENDDO statement, blink on matching DO [WHILE] statement.
  2666.     (default nil)
  2667.  fortran-continuation-string
  2668.     Single-character string to be inserted in column 5 of a continuation
  2669.     line.  (default \"$\")
  2670.  fortran-comment-region
  2671.     String inserted by \\[fortran-comment-region] at start of each line in 
  2672.     region.  (default \"c$$$\")
  2673.  fortran-electric-line-number
  2674.     Non-nil causes line number digits to be moved to the correct column 
  2675.     as typed.  (default t)
  2676.  fortran-break-before-delimiters
  2677.     Non-nil causes `fortran-do-auto-fill' breaks lines before delimiters.
  2678.     (default t)
  2679.  fortran-startup-message
  2680.     Set to nil to inhibit message first time Fortran mode is used.
  2681.  
  2682. Turning on Fortran mode calls the value of the variable `fortran-mode-hook'
  2683. with no args, if that value is non-nil." t nil)
  2684.  
  2685. ;;;***
  2686.  
  2687. ;;;### (autoloads (hs-minor-mode hs-hide-block hs-hide-all) "hideshow" "modes/hideshow.el" (12282 39210))
  2688. ;;; Generated autoloads from modes/hideshow.el
  2689.  
  2690. (autoload 'hs-hide-all "hideshow" "\
  2691. Hides all top-level blocks, displaying only first and last lines.
  2692. When done, point is repositioned at the beginning of the line, and
  2693. hs-hide-hooks is called.  See documentation for `run-hooks'." t nil)
  2694.  
  2695. (autoload 'hs-hide-block "hideshow" "\
  2696. Selects a block and hides it.  With prefix arg, reposition at end.
  2697. Block is defined as a sexp for lispish modes, mode-specific otherwise.
  2698. Comments are blocks, too.  Upon completion, point is at repositioned and
  2699. hs-hide-hooks is called.  See documentation for `run-hooks'." t nil)
  2700.  
  2701. (autoload 'hs-minor-mode "hideshow" "\
  2702. Toggle hideshow minor mode.
  2703. With ARG, turn hideshow minor mode on if ARG is positive, off otherwise.
  2704. When hideshow minor mode is on, the menu bar is augmented with hideshow
  2705. commands and the hideshow commands are enabled.  The variables
  2706.  
  2707.     selective-display
  2708.     selective-display-ellipses
  2709.  
  2710. are set to t.  Lastly, the hooks set in hs-minor-mode-hook are called.
  2711. See documentation for `run-hooks'.
  2712.  
  2713. Turning hideshow minor mode off reverts the menu bar and the
  2714. variables to default values and disables the hideshow commands." t nil)
  2715.  
  2716. ;;;***
  2717.  
  2718. ;;;### (autoloads (ksh-mode) "ksh-mode" "modes/ksh-mode.el" (12341 151))
  2719. ;;; Generated autoloads from modes/ksh-mode.el
  2720.  
  2721. (autoload 'ksh-mode "ksh-mode" "\
  2722. ksh-mode 2.6 - Major mode for editing (Bourne, Korn or Bourne again)
  2723. shell scripts.
  2724. Special key bindings and commands:
  2725. \\{ksh-mode-map}
  2726. Variables controlling indentation style:
  2727. ksh-indent
  2728.     Indentation of ksh statements with respect to containing block.
  2729.     Default value is 2.
  2730. ksh-case-indent
  2731.     Additional indentation for statements under case items.
  2732.     Default value is nil which will align the statements one position 
  2733.     past the \")\" of the pattern.
  2734. ksh-case-item-offset
  2735.     Additional indentation for case items within a case statement.
  2736.     Default value is 2.
  2737. ksh-group-offset
  2738.     Additional indentation for keywords \"do\" and \"then\".
  2739.     Default value is -2.
  2740. ksh-brace-offset
  2741.     Additional indentation of \"{\" under functions or brace groupings.
  2742.     Default value is 0.
  2743. ksh-multiline-offset
  2744.    Additional indentation of line that is preceded of a line ending with a
  2745.    \\ to make it continue on next line.
  2746. ksh-tab-always-indent
  2747.     Controls the operation of the TAB key. If t (the default), always
  2748.     reindent the current line.  If nil, indent the current line only if
  2749.     point is at the left margin or in the line's indentation; otherwise
  2750.     insert a tab.
  2751. ksh-match-and-tell
  2752.     If non-nil echo in the minibuffer the matching compound command
  2753.     for the \"done\", \"}\", \"fi\", or \"esac\". Default value is t.
  2754.  
  2755. ksh-align-to-keyword
  2756.     Controls whether nested constructs align from the keyword or
  2757.     the current indentation. If non-nil, indentation will be relative to
  2758.     the column the keyword starts. If nil, indentation will be relative to
  2759.     the current indentation of the line the keyword is on.
  2760.     The default value is non-nil.
  2761.  
  2762. ksh-comment-regexp
  2763.   Regular expression used to recognize comments. Customize to support
  2764.   ksh-like languages. Default value is \"\\s *#\".
  2765.  
  2766. Style Guide.
  2767.  By setting
  2768.     (setq ksh-indent default-tab-width)
  2769.     (setq ksh-group-offset 0)
  2770.  
  2771.     The following style is obtained:
  2772.  
  2773.     if [ -z $foo ]
  2774.         then
  2775.             bar    # <-- ksh-group-offset is additive to ksh-indent
  2776.             foo
  2777.     fi
  2778.  
  2779.  By setting
  2780.     (setq ksh-indent default-tab-width)
  2781.     (setq ksh-group-offset (- 0 ksh-indent))
  2782.  
  2783.     The following style is obtained:
  2784.  
  2785.     if [ -z $foo ]
  2786.     then
  2787.         bar
  2788.         foo
  2789.     fi
  2790.  
  2791.  By setting
  2792.     (setq ksh-case-item-offset 1)
  2793.     (setq ksh-case-indent nil)
  2794.  
  2795.     The following style is obtained:
  2796.  
  2797.     case x in *
  2798.      foo) bar           # <-- ksh-case-item-offset
  2799.           baz;;         # <-- ksh-case-indent aligns with \")\"
  2800.      foobar) foo
  2801.              bar;;
  2802.     esac
  2803.  
  2804.  By setting
  2805.     (setq ksh-case-item-offset 1)
  2806.     (setq ksh-case-indent 6)
  2807.  
  2808.     The following style is obtained:
  2809.  
  2810.     case x in *
  2811.      foo) bar           # <-- ksh-case-item-offset
  2812.            baz;;        # <-- ksh-case-indent
  2813.      foobar) foo
  2814.            bar;;
  2815.     esac
  2816.     
  2817.  
  2818. Installation:
  2819.   Put ksh-mode.el in some directory in your load-path.
  2820.   Put the following forms in your .emacs file.
  2821.  
  2822.  (setq auto-mode-alist
  2823.       (append auto-mode-alist
  2824.               (list
  2825.                '(\"\\\\.sh$\" . ksh-mode)
  2826.                '(\"\\\\.ksh$\" . ksh-mode)
  2827.                '(\"\\\\.bashrc\" . ksh-mode)
  2828.                '(\"\\\\..*profile\" . ksh-mode))))
  2829.  
  2830.  (setq ksh-mode-hook
  2831.       (function (lambda ()
  2832.          (font-lock-mode 1)             ;; font-lock the buffer
  2833.          (setq ksh-indent 8)
  2834.      (setq ksh-group-offset -8))
  2835.      (setq ksh-brace-offset -8)   
  2836.          (setq ksh-tab-always-indent t)
  2837.          (setq ksh-match-and-tell t)
  2838.          (setq ksh-align-to-keyword t)    ;; Turn on keyword alignment
  2839.      )))" t nil)
  2840.  
  2841. ;;;***
  2842.  
  2843. ;;;### (autoloads (rexx-mode) "rexx-mode" "modes/rexx-mode.el" (12178 29446))
  2844. ;;; Generated autoloads from modes/rexx-mode.el
  2845.  
  2846. (autoload 'rexx-mode "rexx-mode" "\
  2847. Major mode for editing REXX code.
  2848. \\{rexx-mode-map}
  2849.  
  2850. Variables controlling indentation style:
  2851.  rexx-indent
  2852.     The basic indentation for do-blocks.
  2853.  rexx-end-indent
  2854.     The relative offset of the \"end\" statement. 0 places it in the
  2855.     same column as the statements of the block. Setting it to the same
  2856.     value as rexx-indent places the \"end\" under the do-line.
  2857.  rexx-cont-indent
  2858.     The indention for lines following \"then\", \"else\" and \",\"
  2859.     (continued) lines.
  2860.  rexx-tab-always-indent
  2861.     Non-nil means TAB in REXX mode should always reindent the current 
  2862.     line, regardless of where in the line the point is when the TAB
  2863.     command is used.
  2864.  
  2865. If you have set rexx-end-indent to a nonzero value, you probably want to
  2866. remap RETURN to rexx-indent-newline-indent. It makes sure that lines
  2867. indents correctly when you press RETURN.
  2868.  
  2869. An extensive abbrevation table consisting of all the keywords of REXX are
  2870. supplied. Expanded keywords are converted into upper case making it
  2871. easier to distinguish them. To use this feature the buffer must be in
  2872. abbrev-mode. (See example below.)
  2873.  
  2874. Turning on REXX mode calls the value of the variable rexx-mode-hook with
  2875. no args, if that value is non-nil.
  2876.  
  2877. For example:
  2878. \(setq rexx-mode-hook '(lambda ()
  2879.             (setq rexx-indent 4)
  2880.             (setq rexx-end-indent 4)
  2881.             (setq rexx-cont-indent 4)
  2882.             (local-set-key \"\\C-m\" 'rexx-indent-newline-indent)
  2883.             (abbrev-mode 1)
  2884.             ))
  2885.  
  2886. will make the END aligned with the DO/SELECT. It will indent blocks and
  2887. IF-statenents four steps and make sure that the END jumps into the
  2888. correct position when RETURN is pressed. Finaly it will use the abbrev
  2889. table to convert all REXX keywords into upper case." t nil)
  2890.  
  2891. ;;;***
  2892.  
  2893. ;;;### (autoloads (define-mail-alias build-mail-aliases mail-aliases-setup) "mail-abbrevs" "modes/mail-abbrevs.el" (12230 21370))
  2894. ;;; Generated autoloads from modes/mail-abbrevs.el
  2895.  
  2896. (defvar mail-abbrev-mailrc-file nil "\
  2897. Name of file with mail aliases.   If nil, ~/.mailrc is used.")
  2898.  
  2899. (defvar mail-aliases nil "\
  2900. Word-abbrev table of mail address aliases.
  2901. If this is nil, it means the aliases have not yet been initialized and
  2902. should be read from the .mailrc file.  (This is distinct from there being
  2903. no aliases, which is represented by this being a table with no entries.)")
  2904.  
  2905. (autoload 'mail-aliases-setup "mail-abbrevs" nil nil nil)
  2906.  
  2907. (autoload 'build-mail-aliases "mail-abbrevs" "\
  2908. Read mail aliases from .mailrc and set mail-aliases." nil nil)
  2909.  
  2910. (autoload 'define-mail-alias "mail-abbrevs" "\
  2911. Define NAME as a mail-alias that translates to DEFINITION.
  2912. If DEFINITION contains multiple addresses, separate them with commas." t nil)
  2913.  
  2914. ;;;***
  2915.  
  2916. ;;;### (autoloads (makefile-mode) "makefile" "modes/makefile.el" (12235 47825))
  2917. ;;; Generated autoloads from modes/makefile.el
  2918.  
  2919. (autoload 'makefile-mode "makefile" "\
  2920. Major mode for editing Makefiles.
  2921. Calling this function invokes the function(s) \"makefile-mode-hook\" before
  2922. doing anything else.
  2923.  
  2924. \\{makefile-mode-map}
  2925.  
  2926. In the browser, use the following keys:
  2927.  
  2928. \\{makefile-browser-map}
  2929.  
  2930. makefile-mode can be configured by modifying the following
  2931. variables:
  2932.  
  2933. makefile-mode-name:
  2934.     The \"pretty name\" of makefile-mode, as it
  2935.     appears in the modeline.
  2936.  
  2937. makefile-browser-buffer-name:
  2938.     Name of the macro- and target browser buffer.
  2939.  
  2940. makefile-target-colon:
  2941.     The string that gets appended to all target names
  2942.     inserted by makefile-insert-target.
  2943.     \":\" or \"::\" are quite common values.
  2944.  
  2945. makefile-macro-assign:
  2946.    The string that gets appended to all macro names
  2947.    inserted by makefile-insert-macro.
  2948.    The normal value should be \" = \", since this is what
  2949.    standard make expects. However, newer makes such as dmake
  2950.    allow a larger variety of different macro assignments, so you
  2951.    might prefer to use \" += \" or \" := \" .
  2952.  
  2953. makefile-tab-after-target-colon:
  2954.    If you want a TAB (instead of a space) to be appended after the
  2955.    target colon, then set this to a non-nil value.
  2956.  
  2957. makefile-browser-leftmost-column:
  2958.    Number of blanks to the left of the browser selection mark.
  2959.  
  2960. makefile-browser-cursor-column:
  2961.    Column in which the cursor is positioned when it moves
  2962.    up or down in the browser.
  2963.  
  2964. makefile-browser-selected-mark:
  2965.    String used to mark selected entries in the browser.
  2966.  
  2967. makefile-browser-unselected-mark:
  2968.    String used to mark unselected entries in the browser.
  2969.  
  2970. makefile-browser-auto-advance-after-selection-p:
  2971.    If this variable is set to a non-nil value the cursor
  2972.    will automagically advance to the next line after an item
  2973.    has been selected in the browser.
  2974.  
  2975. makefile-pickup-everything-picks-up-filenames-p:
  2976.    If this variable is set to a non-nil value then
  2977.    makefile-pickup-everything also picks up filenames as targets
  2978.    (i.e. it calls makefile-find-filenames-as-targets), otherwise
  2979.    filenames are omitted.
  2980.  
  2981. makefile-cleanup-continuations-p:
  2982.    If this variable is set to a non-nil value then makefile-mode
  2983.    will assure that no line in the file ends with a backslash
  2984.    (the continuation character) followed by any whitespace.
  2985.    This is done by silently removing the trailing whitespace, leaving
  2986.    the backslash itself intact.
  2987.    IMPORTANT: Please note that enabling this option causes makefile-mode
  2988.    to MODIFY A FILE WITHOUT YOUR CONFIRMATION when 'it seems necessary'.
  2989.  
  2990. makefile-browser-hook:
  2991.    A function or list of functions to be called just before the
  2992.    browser is entered. This is executed in the makefile buffer.
  2993.  
  2994. makefile-special-targets-list:
  2995.    List of special targets. You will be offered to complete
  2996.    on one of those in the minibuffer whenever you enter a \".\"
  2997.    at the beginning of a line in makefile-mode." t nil)
  2998.  
  2999. ;;;***
  3000.  
  3001. ;;;### (autoloads (modula-2-mode) "modula2" "modes/modula2.el" (12078 45202))
  3002. ;;; Generated autoloads from modes/modula2.el
  3003.  
  3004. (autoload 'modula-2-mode "modula2" "\
  3005. This is a mode intended to support program development in Modula-2.
  3006. All control constructs of Modula-2 can be reached by typing
  3007. Control-C followed by the first character of the construct.
  3008. \\{m2-mode-map}
  3009.   Control-c b begin         Control-c c case
  3010.   Control-c d definition    Control-c e else
  3011.   Control-c f for           Control-c h header
  3012.   Control-c i if            Control-c m module
  3013.   Control-c l loop          Control-c o or
  3014.   Control-c p procedure     Control-c Control-w with
  3015.   Control-c r record        Control-c s stdio
  3016.   Control-c t type          Control-c u until
  3017.   Control-c v var           Control-c w while
  3018.   Control-c x export        Control-c y import
  3019.   Control-c { begin-comment Control-c } end-comment
  3020.   Control-c Control-z suspend-emacs     Control-c Control-t toggle
  3021.   Control-c Control-c compile           Control-x ` next-error
  3022.   Control-c Control-l link
  3023.  
  3024.    m2-indent controls the number of spaces for each indentation.
  3025.    m2-compile-command holds the command to compile a Modula-2 program.
  3026.    m2-link-command holds the command to link a Modula-2 program." t nil)
  3027.  
  3028. ;;;***
  3029.  
  3030. ;;;### (autoloads (nroff-mode) "nroff-mode" "modes/nroff-mode.el" (12147 26431))
  3031. ;;; Generated autoloads from modes/nroff-mode.el
  3032.  
  3033. (autoload 'nroff-mode "nroff-mode" "\
  3034. Major mode for editing text intended for nroff to format.
  3035. \\{nroff-mode-map}
  3036. Turning on Nroff mode runs `text-mode-hook', then `nroff-mode-hook'.
  3037. Also, try `nroff-electric-mode', for automatically inserting
  3038. closing requests for requests that are used in matched pairs." t nil)
  3039.  
  3040. ;;;***
  3041.  
  3042. ;;;### (autoloads (outl-mouse-minor-mode outl-mouse-mode) "outl-mouse" "modes/outl-mouse.el" (12235 18865))
  3043. ;;; Generated autoloads from modes/outl-mouse.el
  3044.  
  3045. (autoload 'outl-mouse-mode "outl-mouse" "\
  3046. Calls outline-mode, with outl-mouse extensions" t nil)
  3047.  
  3048. (autoload 'outl-mouse-minor-mode "outl-mouse" "\
  3049. Toggles outline-minor-mode, with outl-mouse extensions" t nil)
  3050.  
  3051. ;;;***
  3052.  
  3053. ;;;### (autoloads (outline-minor-mode outline-mode) "outline" "modes/outline.el" (12222 24104))
  3054. ;;; Generated autoloads from modes/outline.el
  3055.  
  3056. (autoload 'outline-mode "outline" "\
  3057. Set major mode for editing outlines with selective display.
  3058. Headings are lines which start with asterisks: one for major headings,
  3059. two for subheadings, etc.  Lines not starting with asterisks are body lines. 
  3060.  
  3061. Body text or subheadings under a heading can be made temporarily
  3062. invisible, or visible again.  Invisible lines are attached to the end 
  3063. of the heading, so they move with it, if the line is killed and yanked
  3064. back.  A heading with text hidden under it is marked with an ellipsis (...).
  3065.  
  3066. Commands:\\<outline-mode-map>
  3067. \\[outline-next-visible-heading]   outline-next-visible-heading      move by visible headings
  3068. \\[outline-previous-visible-heading]   outline-previous-visible-heading
  3069. \\[outline-forward-same-level]   outline-forward-same-level        similar but skip subheadings
  3070. \\[outline-backward-same-level]   outline-backward-same-level
  3071. \\[outline-up-heading]   outline-up-heading            move from subheading to heading
  3072.  
  3073. \\[hide-body]    make all text invisible (not headings).
  3074. \\[show-all]    make everything in buffer visible.
  3075.  
  3076. The remaining commands are used when point is on a heading line.
  3077. They apply to some of the body or subheadings of that heading.
  3078. \\[hide-subtree]   hide-subtree    make body and subheadings invisible.
  3079. \\[show-subtree]   show-subtree    make body and subheadings visible.
  3080. \\[show-children]   show-children    make direct subheadings visible.
  3081.          No effect on body, or subheadings 2 or more levels down.
  3082.          With arg N, affects subheadings N levels down.
  3083. \\[hide-entry]       make immediately following body invisible.
  3084. \\[show-entry]       make it visible.
  3085. \\[hide-leaves]       make body under heading and under its subheadings invisible.
  3086.              The subheadings remain visible.
  3087. \\[show-branches]  make all subheadings at all levels visible.
  3088.  
  3089. The variable `outline-regexp' can be changed to control what is a heading.
  3090. A line is a heading if `outline-regexp' matches something at the
  3091. beginning of the line.  The longer the match, the deeper the level.
  3092.  
  3093. Turning on outline mode calls the value of `text-mode-hook' and then of
  3094. `outline-mode-hook', if they are non-nil." t nil)
  3095.  
  3096. (autoload 'outline-minor-mode "outline" "\
  3097. Toggle Outline minor mode.
  3098. With arg, turn Outline minor mode on if arg is positive, off otherwise.
  3099. See the command `outline-mode' for more information on this mode." t nil)
  3100.  
  3101. ;;;***
  3102.  
  3103. ;;;### (autoloads (pascal-mode) "pascal" "modes/pascal.el" (12147 26439))
  3104. ;;; Generated autoloads from modes/pascal.el
  3105.  
  3106. (autoload 'pascal-mode "pascal" "\
  3107. Major mode for editing Pascal code. \\<pascal-mode-map>
  3108. TAB indents for Pascal code.  Delete converts tabs to spaces as it moves back.
  3109.  
  3110. \\[pascal-complete-word] completes the word around current point with respect to position in code
  3111. \\[pascal-show-completions] shows all possible completions at this point.
  3112.  
  3113. Other useful functions are:
  3114.  
  3115. \\[pascal-mark-defun]    - Mark function.
  3116. \\[pascal-insert-block]    - insert begin ... end;
  3117. \\[pascal-star-comment]    - insert (* ... *)
  3118. \\[pascal-comment-area]    - Put marked area in a comment, fixing nested comments.
  3119. \\[pascal-uncomment-area]    - Uncomment an area commented with \\[pascal-comment-area].
  3120. \\[pascal-beg-of-defun]    - Move to beginning of current function.
  3121. \\[pascal-end-of-defun]    - Move to end of current function.
  3122. \\[pascal-goto-defun]    - Goto function prompted for in the minibuffer.
  3123. \\[pascal-outline]    - Enter pascal-outline-mode (see also pascal-outline).
  3124.  
  3125. Variables controlling indentation/edit style:
  3126.  
  3127.  pascal-indent-level      (default 3)
  3128.     Indentation of Pascal statements with respect to containing block.
  3129.  pascal-case-indent       (default 2)
  3130.     Indentation for case statements.
  3131.  pascal-auto-newline      (default nil)
  3132.     Non-nil means automatically newline after simcolons and the punctation mark
  3133.     after an end.
  3134.  pascal-tab-always-indent (default t)
  3135.     Non-nil means TAB in Pascal mode should always reindent the current line,
  3136.     regardless of where in the line point is when the TAB command is used.
  3137.  pascal-auto-endcomments  (default t)
  3138.     Non-nil means a comment { ... } is set after the ends which ends cases and
  3139.     functions. The name of the function or case will be set between the braces.
  3140.  pascal-auto-lineup       (default t)
  3141.     List of contexts where auto lineup of :'s or ='s hould be done.
  3142.  
  3143. See also the user variables pascal-type-keywords, pascal-start-keywords and
  3144. pascal-separator-keywords.
  3145.  
  3146. Turning on Pascal mode calls the value of the variable pascal-mode-hook with
  3147. no args, if that value is non-nil." t nil)
  3148.  
  3149. ;;;***
  3150.  
  3151. ;;;### (autoloads (perl-mode) "perl-mode" "modes/perl-mode.el" (12147 26430))
  3152. ;;; Generated autoloads from modes/perl-mode.el
  3153.  
  3154. (autoload 'perl-mode "perl-mode" "\
  3155. Major mode for editing Perl code.
  3156. Expression and list commands understand all Perl brackets.
  3157. Tab indents for Perl code.
  3158. Comments are delimited with # ... \\n.
  3159. Paragraphs are separated by blank lines only.
  3160. Delete converts tabs to spaces as it moves back.
  3161. \\{perl-mode-map}
  3162. Variables controlling indentation style:
  3163.  perl-tab-always-indent
  3164.     Non-nil means TAB in Perl mode should always indent the current line,
  3165.     regardless of where in the line point is when the TAB command is used.
  3166.  perl-tab-to-comment
  3167.     Non-nil means that for lines which don't need indenting, TAB will
  3168.     either delete an empty comment, indent an existing comment, move 
  3169.     to end-of-line, or if at end-of-line already, create a new comment.
  3170.  perl-nochange
  3171.     Lines starting with this regular expression will not be auto-indented.
  3172.  perl-indent-level
  3173.     Indentation of Perl statements within surrounding block.
  3174.     The surrounding block's indentation is the indentation
  3175.     of the line on which the open-brace appears.
  3176.  perl-continued-statement-offset
  3177.     Extra indentation given to a substatement, such as the
  3178.     then-clause of an if or body of a while.
  3179.  perl-continued-brace-offset
  3180.     Extra indentation given to a brace that starts a substatement.
  3181.     This is in addition to perl-continued-statement-offset.
  3182.  perl-brace-offset
  3183.     Extra indentation for line if it starts with an open brace.
  3184.  perl-brace-imaginary-offset
  3185.     An open brace following other text is treated as if it were
  3186.     this far to the right of the start of its line.
  3187.  perl-label-offset
  3188.     Extra indentation for line that is a label.
  3189.  
  3190. Various indentation styles:       K&R  BSD  BLK  GNU  LW
  3191.   perl-indent-level                5    8    0    2    4
  3192.   perl-continued-statement-offset  5    8    4    2    4
  3193.   perl-continued-brace-offset      0    0    0    0   -4
  3194.   perl-brace-offset               -5   -8    0    0    0
  3195.   perl-brace-imaginary-offset      0    0    4    0    0
  3196.   perl-label-offset               -5   -8   -2   -2   -2
  3197.  
  3198. Turning on Perl mode calls the value of the variable perl-mode-hook with no 
  3199. args, if that value is non-nil." t nil)
  3200.  
  3201. ;;;***
  3202.  
  3203. ;;;### (autoloads (picture-mode) "picture" "modes/picture.el" (12226 16561))
  3204. ;;; Generated autoloads from modes/picture.el
  3205.  
  3206. (autoload 'picture-mode "picture" "\
  3207. Switch to Picture mode, in which a quarter-plane screen model is used.
  3208. Printing characters replace instead of inserting themselves with motion
  3209. afterwards settable by these commands:
  3210.   C-c <      Move left after insertion.
  3211.   C-c >      Move right after insertion.
  3212.   C-c ^      Move up after insertion.
  3213.   C-c .      Move down after insertion.
  3214.   C-c `      Move northwest (nw) after insertion.
  3215.   C-c '      Move northeast (ne) after insertion.
  3216.   C-c /      Move southwest (sw) after insertion.
  3217.   C-c \\   Move southeast (se) after insertion.
  3218. The current direction is displayed in the modeline.  The initial
  3219. direction is right.  Whitespace is inserted and tabs are changed to
  3220. spaces when required by movement.  You can move around in the buffer
  3221. with these commands:
  3222.   \\[picture-move-down]      Move vertically to SAME column in previous line.
  3223.   \\[picture-move-up]      Move vertically to SAME column in next line.
  3224.   \\[picture-end-of-line]      Move to column following last non-whitespace character.
  3225.   \\[picture-forward-column]      Move right inserting spaces if required.
  3226.   \\[picture-backward-column]      Move left changing tabs to spaces if required.
  3227.   C-c C-f Move in direction of current picture motion.
  3228.   C-c C-b Move in opposite direction of current picture motion.
  3229.   Return  Move to beginning of next line.
  3230. You can edit tabular text with these commands:
  3231.   M-Tab      Move to column beneath (or at) next interesting character.
  3232.         `Indents' relative to a previous line.
  3233.   Tab      Move to next stop in tab stop list.
  3234.   C-c Tab Set tab stops according to context of this line.
  3235.         With ARG resets tab stops to default (global) value.
  3236.         See also documentation of variable    picture-tab-chars
  3237.         which defines \"interesting character\".  You can manually
  3238.         change the tab stop list with command \\[edit-tab-stops].
  3239. You can manipulate text with these commands:
  3240.   C-d      Clear (replace) ARG columns after point without moving.
  3241.   C-c C-d Delete char at point - the command normally assigned to C-d.
  3242.   \\[picture-backward-clear-column]  Clear (replace) ARG columns before point, moving back over them.
  3243.   \\[picture-clear-line]      Clear ARG lines, advancing over them.     The cleared
  3244.         text is saved in the kill ring.
  3245.   \\[picture-open-line]      Open blank line(s) beneath current line.
  3246. You can manipulate rectangles with these commands:
  3247.   C-c C-k Clear (or kill) a rectangle and save it.
  3248.   C-c C-w Like C-c C-k except rectangle is saved in named register.
  3249.   C-c C-y Overlay (or insert) currently saved rectangle at point.
  3250.   C-c C-x Like C-c C-y except rectangle is taken from named register.
  3251.   \\[copy-rectangle-to-register]   Copies a rectangle to a register.
  3252.   \\[advertised-undo]   Can undo effects of rectangle overlay commands
  3253.         commands if invoked soon enough.
  3254. You can return to the previous mode with:
  3255.   C-c C-c Which also strips trailing whitespace from every line.
  3256.         Stripping is suppressed by supplying an argument.
  3257.  
  3258. Entry to this mode calls the value of  picture-mode-hook  if non-nil.
  3259.  
  3260. Note that Picture mode commands will work outside of Picture mode, but
  3261. they are not defaultly assigned to keys." t nil)
  3262.  
  3263. (defalias 'edit-picture 'picture-mode)
  3264.  
  3265. ;;;***
  3266.  
  3267. ;;;### (autoloads (postscript-mode) "postscript" "modes/postscript.el" (12178 29443))
  3268. ;;; Generated autoloads from modes/postscript.el
  3269.  
  3270. (autoload 'postscript-mode "postscript" "\
  3271. Major mode for editing PostScript files.
  3272.  
  3273. \\[ps-execute-buffer] will send the contents of the buffer to the NeWS
  3274. server using psh(1).  \\[ps-execute-region] sends the current region.
  3275. \\[ps-shell] starts an interactive psh(1) window which will be used for
  3276. subsequent \\[ps-execute-buffer] or \\[ps-execute-region] commands.
  3277.  
  3278. In this mode, TAB and \\[indent-region] attempt to indent code
  3279. based on the position of {}, [], and begin/end pairs.  The variable
  3280. ps-indent-level controls the amount of indentation used inside
  3281. arrays and begin/end pairs.  
  3282.  
  3283. \\{ps-mode-map}
  3284.  
  3285. \\[postscript-mode] calls the value of the variable postscript-mode-hook 
  3286. with no args, if that value is non-nil." t nil)
  3287.  
  3288. ;;;***
  3289.  
  3290. ;;;### (autoloads (run-prolog inferior-prolog-mode prolog-mode) "prolog" "modes/prolog.el" (12147 26432))
  3291. ;;; Generated autoloads from modes/prolog.el
  3292.  
  3293. (autoload 'prolog-mode "prolog" "\
  3294. Major mode for editing Prolog code for Prologs.
  3295. Blank lines and `%%...' separate paragraphs.  `%'s start comments.
  3296. Commands:
  3297. \\{prolog-mode-map}
  3298. Entry to this mode calls the value of prolog-mode-hook
  3299. if that value is non-nil." t nil)
  3300.  
  3301. (autoload 'inferior-prolog-mode "prolog" "\
  3302. Major mode for interacting with an inferior Prolog process.
  3303.  
  3304. The following commands are available:
  3305. \\{inferior-prolog-mode-map}
  3306.  
  3307. Entry to this mode calls the value of prolog-mode-hook with no arguments,
  3308. if that value is non-nil.  Likewise with the value of comint-mode-hook.
  3309. prolog-mode-hook is called after comint-mode-hook.
  3310.  
  3311. You can send text to the inferior Prolog from other buffers
  3312. using the commands send-region, send-string and \\[prolog-consult-region].
  3313.  
  3314. Commands:
  3315. Tab indents for Prolog; with argument, shifts rest
  3316.  of expression rigidly with the current line.
  3317. Paragraphs are separated only by blank lines and '%%'. '%'s start comments.
  3318.  
  3319. Return at end of buffer sends line as input.
  3320. Return not at end copies rest of line to end and sends it.
  3321. \\[comint-kill-input] and \\[backward-kill-word] are kill commands, imitating normal Unix input editing.
  3322. \\[comint-interrupt-subjob] interrupts the shell or its current subjob if any.
  3323. \\[comint-stop-subjob] stops. \\[comint-quit-subjob] sends quit signal." t nil)
  3324.  
  3325. (autoload 'run-prolog "prolog" "\
  3326. Run an inferior Prolog process, input and output via buffer *prolog*." t nil)
  3327.  
  3328. ;;;***
  3329.  
  3330. ;;;### (autoloads (resize-minibuffer-mode) "rsz-minibuf" "modes/rsz-minibuf.el" (12346 23685))
  3331. ;;; Generated autoloads from modes/rsz-minibuf.el
  3332.  
  3333. (defvar resize-minibuffer-mode nil "\
  3334. *If non-`nil', resize the minibuffer so its entire contents are visible.")
  3335.  
  3336. (defvar resize-minibuffer-window-max-height nil "\
  3337. *Maximum size the minibuffer window is allowed to become.
  3338. If less than 1 or not a number, the limit is the height of the frame in
  3339. which the active minibuffer window resides.")
  3340.  
  3341. (defvar resize-minibuffer-window-exactly t "\
  3342. *If non-`nil', make minibuffer exactly the size needed to display all its contents.
  3343. Otherwise, the minibuffer window can temporarily increase in size but
  3344. never get smaller while it is active.")
  3345.  
  3346. (defvar resize-minibuffer-frame nil "\
  3347. *If non-`nil' and the active minibuffer is the sole window in its frame, allow changing the frame height.")
  3348.  
  3349. (defvar resize-minibuffer-frame-max-height nil "\
  3350. *Maximum size the minibuffer frame is allowed to become.
  3351. If less than 1 or not a number, there is no limit.")
  3352.  
  3353. (defvar resize-minibuffer-frame-exactly nil "\
  3354. *If non-`nil', make minibuffer frame exactly the size needed to display all its contents.
  3355. Otherwise, the minibuffer frame can temporarily increase in size but
  3356. never get smaller while it is active.")
  3357.  
  3358. (autoload 'resize-minibuffer-mode "rsz-minibuf" "\
  3359. Enable or disable resize-minibuffer mode.
  3360. A negative prefix argument disables this mode.  A positive argument or
  3361. argument of 0 enables it.
  3362.  
  3363. When this minor mode is enabled, the minibuffer is dynamically resized to
  3364. contain the entire region of text put in it as you type.
  3365.  
  3366. The variable `resize-minibuffer-mode' is set to t or nil depending on
  3367. whether this mode is active or not.
  3368.  
  3369. The maximum height to which the minibuffer can grow is controlled by the
  3370. variable `resize-minibuffer-window-max-height'.
  3371.  
  3372. The variable `resize-minibuffer-window-exactly' determines whether the
  3373. minibuffer window should ever be shrunk to make it no larger than needed to
  3374. display its contents.
  3375.  
  3376. When using a window system, it is possible for a minibuffer to tbe the sole
  3377. window in a frame.  Since that window is already its maximum size, the only
  3378. way to make more text visible at once is to increase the size of the frame.
  3379. The variable `resize-minibuffer-frame' controls whether this should be
  3380. done.  The variables `resize-minibuffer-frame-max-height' and
  3381. `resize-minibuffer-frame-exactly' are analogous to their window
  3382. counterparts." t nil)
  3383.  
  3384. ;;;***
  3385.  
  3386. ;;;### (autoloads (scheme-mode) "scheme" "modes/scheme.el" (12147 26433))
  3387. ;;; Generated autoloads from modes/scheme.el
  3388.  
  3389. (autoload 'scheme-mode "scheme" "\
  3390. Major mode for editing Scheme code.
  3391. Editing commands are similar to those of lisp-mode.
  3392.  
  3393. In addition, if an inferior Scheme process is running, some additional
  3394. commands will be defined, for evaluating expressions and controlling
  3395. the interpreter, and the state of the process will be displayed in the
  3396. modeline of all Scheme buffers.  The names of commands that interact
  3397. with the Scheme process start with \"xscheme-\".  For more information
  3398. see the documentation for xscheme-interaction-mode.
  3399.  
  3400. Commands:
  3401. Delete converts tabs to spaces as it moves back.
  3402. Blank lines separate paragraphs.  Semicolons start comments.
  3403. \\{scheme-mode-map}
  3404. Entry to this mode calls the value of scheme-mode-hook
  3405. if that value is non-nil." t nil)
  3406.  
  3407. ;;;***
  3408.  
  3409. ;;;### (autoloads (scribe-mode) "scribe" "modes/scribe.el" (12078 45205))
  3410. ;;; Generated autoloads from modes/scribe.el
  3411.  
  3412. (autoload 'scribe-mode "scribe" "\
  3413. Major mode for editing files of Scribe (a text formatter) source.
  3414. Scribe-mode is similar text-mode, with a few extra commands added.
  3415. \\{scribe-mode-map}
  3416.  
  3417. Interesting variables:
  3418.  
  3419. scribe-fancy-paragraphs
  3420.   Non-nil makes Scribe mode use a different style of paragraph separation.
  3421.  
  3422. scribe-electric-quote
  3423.   Non-nil makes insert of double quote use `` or '' depending on context.
  3424.  
  3425. scribe-electric-parenthesis
  3426.   Non-nil makes an open-parenthesis char (one of `([<{')
  3427.   automatically insert its close if typed after an @Command form." t nil)
  3428.  
  3429. ;;;***
  3430.  
  3431. ;;;### (autoloads (mail-other-frame mail-other-window mail mail-mode) "sendmail" "modes/sendmail.el" (12346 23681))
  3432. ;;; Generated autoloads from modes/sendmail.el
  3433.  
  3434. (defvar mail-self-blind nil "\
  3435. Non-nil means insert BCC to self in messages to be sent.
  3436. This is done when the message is initialized,
  3437. so you can remove or alter the BCC field to override the default.")
  3438.  
  3439. (defvar mail-interactive nil "\
  3440. Non-nil means when sending a message wait for and display errors.
  3441. nil means let mailer mail back a message to report errors.")
  3442.  
  3443. (defvar mail-dir nil "\
  3444. *Default directory for saving messages.")
  3445.  
  3446. (defvar rmail-ignored-headers (purecopy (concat "^\\(" (mapconcat 'identity '("Sender:" "References:" "Return-Path:" "Received:" "[^:     \n]*Message-ID:" "Errors-To:" "Path:" "Expires:" "Xref:" "Lines:" "Approved:" "Distribution:" "Content-Length:" "Mime-Version:" "Content-Type:" "Content-Transfer-Encoding:" "X400-Received:" "X400-Originator:" "X400-Mts-Identifier:" "X400-Content-Type:" "Content-Identifier:" "Status:" "Summary-Line:" "X-Attribution:" "Via:" "Sent-Via:" "Mail-From:" "Origin:" "Comments:" "Originator:" "NF-ID:" "NF-From:" "Posting-Version:" "Posted:" "Posted-Date:" "Date-Received:" "Relay-Version:" "Article-I\\.D\\.:" "NNTP-Version:" "NNTP-Posting-Host:" "X-Mailer:" "X-Newsreader:" "News-Software:" "X-Received:" "X-References:" "X-Envelope-To:" "X-VMS-" "Remailed-" "X-Plantation:" "X-Windows:" "X-Pgp-") "\\|") "\\)")) "\
  3447. *Gubbish header fields one would rather not see.")
  3448.  
  3449. (defvar mail-yank-ignored-headers (purecopy (concat rmail-ignored-headers "\\|" "^\\(" (mapconcat 'identity '("Resent-To:" "Resent-By:" "Resent-CC:" "To:" "Subject:" "In-Reply-To:") "\\|") "\\)")) "\
  3450. Delete these headers from old message when it's inserted in a reply.")
  3451.  
  3452. (defvar send-mail-function 'sendmail-send-it "\
  3453. Function to call to send the current buffer as mail.
  3454. The headers are be delimited by a line which is `mail-header-separator'.")
  3455.  
  3456. (defvar mail-header-separator (purecopy "--text follows this line--") "\
  3457. *Line used to separate headers from text in messages being composed.")
  3458.  
  3459. (defvar mail-archive-file-name nil "\
  3460. *Name of file to write all outgoing messages in, or nil for none.
  3461. Do not use an rmail file here!  Instead, use its inbox file.")
  3462.  
  3463. (defvar mail-yank-prefix "> " "\
  3464. *Prefix insert on lines of yanked message being replied to.
  3465. nil means use indentation.")
  3466.  
  3467. (defvar mail-signature nil "\
  3468. *Text inserted at end of mail buffer when a message is initialized.
  3469. If t, it means to insert the contents of the file `mail-signature-file'.")
  3470.  
  3471. (autoload 'mail-mode "sendmail" "\
  3472. Major mode for editing mail to be sent.
  3473. Like Text Mode but with these additional commands:
  3474. C-c C-s  mail-send (send the message)    C-c C-c  mail-send-and-exit
  3475. C-c C-f  move to a header field (and create it if there isn't):
  3476.      C-c C-f C-t  move to To:    C-c C-f C-s  move to Subj:
  3477.      C-c C-f C-b  move to BCC:    C-c C-f C-c  move to CC:
  3478.      C-c C-f C-r  move to Reply-To:
  3479. C-c C-t  move to message text.
  3480. C-c C-y  mail-yank-original (insert current message, in Rmail).
  3481. C-c C-w  mail-signature (insert signature file).
  3482. C-c C-q  mail-fill-yanked-message (fill what was yanked).
  3483. C-c C-v  mail-sent-via (add a sent-via field for each To or CC)
  3484.  
  3485. Button3  Popup menu with the above commands." t nil)
  3486.  
  3487. (autoload 'mail "sendmail" "\
  3488. Edit a message to be sent.  Prefix arg means resume editing (don't erase).
  3489. When this function returns, the buffer `*mail*' is selected.
  3490. The value is t if the message was newly initialized; otherwise, nil.
  3491.  
  3492. \\<mail-mode-map>
  3493. While editing message, type \\[mail-send-and-exit] to send the message and exit.
  3494.  
  3495. Various special commands starting with C-c are available in sendmail mode
  3496. to move to message header fields:
  3497. \\{mail-mode-map}
  3498.  
  3499. The variable `mail-signature' controls whether the signature file
  3500. `mail-signature-file' is inserted immediately.
  3501.  
  3502. If `mail-insert-signature' is non-nil, the signature file, denoted by
  3503. the variable `mail-signature-file', is automatically inserted at the
  3504. end of the message before sending.  (Otherwise use C-c C-w).
  3505.  
  3506. If `mail-self-blind' is non-nil, a BCC to yourself is inserted
  3507. when the message is initialized.
  3508.  
  3509. If `mail-default-reply-to' is non-nil, it should be an address (a string);
  3510. a Reply-to: field with that address is inserted.
  3511.  
  3512. If `mail-archive-file-name' is non-nil, an FCC field with that file name
  3513. is inserted.
  3514.  
  3515. If `mail-setup-hook' is bound, its value is called with no arguments
  3516. after the message is initialized.  It can add more default fields.
  3517.  
  3518. When calling from a program, the second through fifth arguments
  3519.  TO, SUBJECT, IN-REPLY-TO and CC specify if non-nil
  3520.  the initial contents of those header fields.
  3521.  These arguments should not have final newlines.
  3522. The sixth argument REPLYBUFFER is a buffer whose contents
  3523.  should be yanked if the user types C-c C-y.
  3524. The seventh argument ACTIONS is a list of actions to take
  3525.  if/when the message is sent.  Each action looks like (FUNCTION . ARGS);
  3526.  when the message is sent, we apply FUNCTION to ARGS.
  3527.  This is how Rmail arranges to mark messages `answered'." t nil)
  3528.  
  3529. (autoload 'mail-other-window "sendmail" "\
  3530. Like `mail' command, but display mail buffer in another window." t nil)
  3531.  
  3532. (autoload 'mail-other-frame "sendmail" "\
  3533. Like `mail' command, but display mail buffer in another frame." t nil)
  3534.  
  3535. ;;;***
  3536.  
  3537. ;;;### (autoloads (sgml-mode) "sgml-mode" "modes/sgml-mode.el" (12147 26438))
  3538. ;;; Generated autoloads from modes/sgml-mode.el
  3539.  
  3540. (autoload 'sgml-mode "sgml-mode" "\
  3541. Major mode for editing SGML.
  3542. Makes > display the matching <.  Makes / display matching /.
  3543. Use \\[sgml-validate] to validate your document with an SGML parser." t nil)
  3544.  
  3545. ;;;***
  3546.  
  3547. ;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl" "modes/tcl.el" (12312 61321))
  3548. ;;; Generated autoloads from modes/tcl.el
  3549.  
  3550. (autoload 'tcl-mode "tcl" "\
  3551. Major mode for editing Tcl code.
  3552. Expression and list commands understand all Tcl brackets.
  3553. Tab indents for Tcl code.
  3554. Paragraphs are separated by blank lines only.
  3555. Delete converts tabs to spaces as it moves back.
  3556.  
  3557. Variables controlling indentation style:
  3558.   tcl-indent-level
  3559.     Indentation of Tcl statements within surrounding block.
  3560.   tcl-continued-indent-level
  3561.     Indentation of continuation line relative to first line of command.
  3562.  
  3563. Variables controlling user interaction with mode (see variable
  3564. documentation for details):
  3565.   tcl-tab-always-indent
  3566.     Controls action of TAB key.
  3567.   tcl-auto-newline
  3568.     Non-nil means automatically newline before and after braces, brackets,
  3569.     and semicolons inserted in Tcl code.
  3570.   tcl-electric-hash-style
  3571.     Controls action of `#' key.
  3572.   tcl-use-hairy-comment-detector
  3573.     If t, use more complicated, but slower, comment detector.
  3574.     This variable is only used in GNU Emacs 19.
  3575.  
  3576. Turning on Tcl mode calls the value of the variable `tcl-mode-hook'
  3577. with no args, if that value is non-nil.  Read the documentation for
  3578. `tcl-mode-hook' to see what kinds of interesting hook functions
  3579. already exist.
  3580.  
  3581. Commands:
  3582. \\{tcl-mode-map}" t nil)
  3583.  
  3584. (autoload 'inferior-tcl "tcl" "\
  3585. Run inferior Tcl process.
  3586. Prefix arg means enter program name interactively.
  3587. See documentation for function `inferior-tcl-mode' for more information." t nil)
  3588.  
  3589. (autoload 'tcl-help-on-word "tcl" "\
  3590. Get help on Tcl command.  Default is word at point.
  3591. Prefix argument means invert sense of `tcl-use-smart-word-finder'." t nil)
  3592.  
  3593. ;;;***
  3594.  
  3595. ;;;### (autoloads (latex-mode plain-tex-mode tex-mode) "tex-mode" "modes/tex-mode.el" (12147 26435))
  3596. ;;; Generated autoloads from modes/tex-mode.el
  3597.  
  3598. (autoload 'tex-mode "tex-mode" "\
  3599. Major mode for editing files of input for TeX, LaTeX, or SliTeX.
  3600. Tries to determine (by looking at the beginning of the file) whether
  3601. this file is for plain TeX, LaTeX, or SliTeX and calls plain-tex-mode,
  3602. latex-mode, or slitex-mode, respectively.  If it cannot be determined,
  3603. such as if there are no commands in the file, the value of tex-default-mode
  3604. is used." t nil)
  3605.  
  3606. (fset 'TeX-mode 'tex-mode)
  3607.  
  3608. (fset 'LaTeX-mode 'latex-mode)
  3609.  
  3610. (autoload 'plain-tex-mode "tex-mode" "\
  3611. Major mode for editing files of input for plain TeX.
  3612. Makes $ and } display the characters they match.
  3613. Makes \" insert `` when it seems to be the beginning of a quotation,
  3614. and '' when it appears to be the end; it inserts \" only after a \\.
  3615.  
  3616. Use \\[tex-region] to run TeX on the current region, plus a \"header\"
  3617. copied from the top of the file (containing macro definitions, etc.),
  3618. running TeX under a special subshell.  \\[tex-buffer] does the whole buffer.
  3619. \\[tex-file] saves the buffer and then processes the file.
  3620. \\[tex-print] prints the .dvi file made by any of these.
  3621. \\[tex-view] previews the .dvi file made by any of these.
  3622. \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
  3623.  
  3624. Use \\[validate-tex-buffer] to check buffer for paragraphs containing
  3625. mismatched $'s or braces.
  3626.  
  3627. Special commands:
  3628. \\{tex-mode-map}
  3629.  
  3630. Mode variables:
  3631. tex-run-command
  3632.     Command string used by \\[tex-region] or \\[tex-buffer].
  3633. tex-directory
  3634.     Directory in which to create temporary files for TeX jobs
  3635.     run by \\[tex-region] or \\[tex-buffer].
  3636. tex-dvi-print-command
  3637.     Command string used by \\[tex-print] to print a .dvi file.
  3638. tex-alt-dvi-print-command
  3639.     Alternative command string used by \\[tex-print] (when given a prefix
  3640.     argument) to print a .dvi file.
  3641. tex-dvi-view-command
  3642.     Command string used by \\[tex-view] to preview a .dvi file.
  3643. tex-show-queue-command
  3644.     Command string used by \\[tex-show-print-queue] to show the print
  3645.     queue that \\[tex-print] put your job on.
  3646.  
  3647. Entering Plain-tex mode calls the value of text-mode-hook, then the value of
  3648. tex-mode-hook, and then the value of plain-tex-mode-hook.  When the special
  3649. subshell is initiated, the value of tex-shell-hook is called." t nil)
  3650.  
  3651. (fset 'plain-TeX-mode 'plain-tex-mode)
  3652.  
  3653. (autoload 'latex-mode "tex-mode" "\
  3654. Major mode for editing files of input for LaTeX.
  3655. Makes $ and } display the characters they match.
  3656. Makes \" insert `` when it seems to be the beginning of a quotation,
  3657. and '' when it appears to be the end; it inserts \" only after a \\.
  3658.  
  3659. Use \\[tex-region] to run LaTeX on the current region, plus the preamble
  3660. copied from the top of the file (containing \\documentstyle, etc.),
  3661. running LaTeX under a special subshell.  \\[tex-buffer] does the whole buffer.
  3662. \\[tex-file] saves the buffer and then processes the file.
  3663. \\[tex-print] prints the .dvi file made by any of these.
  3664. \\[tex-view] previews the .dvi file made by any of these.
  3665. \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
  3666.  
  3667. Use \\[validate-tex-buffer] to check buffer for paragraphs containing
  3668. mismatched $'s or braces.
  3669.  
  3670. Special commands:
  3671. \\{tex-mode-map}
  3672.  
  3673. Mode variables:
  3674. latex-run-command
  3675.     Command string used by \\[tex-region] or \\[tex-buffer].
  3676. tex-directory
  3677.     Directory in which to create temporary files for LaTeX jobs
  3678.     run by \\[tex-region] or \\[tex-buffer].
  3679. tex-dvi-print-command
  3680.     Command string used by \\[tex-print] to print a .dvi file.
  3681. tex-alt-dvi-print-command
  3682.     Alternative command string used by \\[tex-print] (when given a prefix
  3683.     argument) to print a .dvi file.
  3684. tex-dvi-view-command
  3685.     Command string used by \\[tex-view] to preview a .dvi file.
  3686. tex-show-queue-command
  3687.     Command string used by \\[tex-show-print-queue] to show the print
  3688.     queue that \\[tex-print] put your job on.
  3689.  
  3690. Entering Latex mode calls the value of text-mode-hook, then the value of
  3691. tex-mode-hook, and then the value of latex-mode-hook.  When the special
  3692. subshell is initiated, the value of tex-shell-hook is called." t nil)
  3693.  
  3694. ;;;***
  3695.  
  3696. ;;;### (autoloads (texinfo-mode) "texinfo" "modes/texinfo.el" (12312 61322))
  3697. ;;; Generated autoloads from modes/texinfo.el
  3698.  
  3699. (autoload 'texinfo-mode "texinfo" "\
  3700. Major mode for editing Texinfo files.
  3701.  
  3702.   It has these extra commands:
  3703. \\{texinfo-mode-map}
  3704.  
  3705.   These are files that are used as input for TeX to make printed manuals
  3706. and also to be turned into Info files with \\[makeinfo-buffer] or
  3707. the `makeinfo' program.  These files must be written in a very restricted and
  3708. modified version of TeX input format.
  3709.  
  3710.   Editing commands are like text-mode except that the syntax table is
  3711. set up so expression commands skip Texinfo bracket groups.  To see
  3712. what the Info version of a region of the Texinfo file will look like,
  3713. use \\[makeinfo-region], which runs `makeinfo' on the current region.
  3714.  
  3715.   You can show the structure of a Texinfo file with \\[texinfo-show-structure].
  3716. This command shows the structure of a Texinfo file by listing the
  3717. lines with the @-sign commands for @chapter, @section, and the like.
  3718. These lines are displayed in another window called the *Occur* window.
  3719. In that window, you can position the cursor over one of the lines and
  3720. use \\[occur-mode-goto-occurrence], to jump to the corresponding spot
  3721. in the Texinfo file.
  3722.  
  3723.   In addition, Texinfo mode provides commands that insert various
  3724. frequently used @-sign commands into the buffer.  You can use these
  3725. commands to save keystrokes.  And you can insert balanced braces with
  3726. \\[texinfo-insert-braces] and later use the command \\[up-list] to
  3727. move forward past the closing brace.
  3728.  
  3729. Also, Texinfo mode provides functions for automatically creating or
  3730. updating menus and node pointers.  These functions
  3731.  
  3732.   * insert the `Next', `Previous' and `Up' pointers of a node,
  3733.   * insert or update the menu for a section, and
  3734.   * create a master menu for a Texinfo source file.
  3735.  
  3736. Here are the functions:
  3737.  
  3738.     texinfo-update-node                \\[texinfo-update-node]
  3739.     texinfo-every-node-update          \\[texinfo-every-node-update]
  3740.     texinfo-sequential-node-update 
  3741.  
  3742.     texinfo-make-menu                  \\[texinfo-make-menu]
  3743.     texinfo-all-menus-update           \\[texinfo-all-menus-update]
  3744.     texinfo-master-menu
  3745.  
  3746.     texinfo-indent-menu-description (column &optional region-p)
  3747.  
  3748. The `texinfo-column-for-description' variable specifies the column to
  3749. which menu descriptions are indented. 
  3750.  
  3751. Passed an argument (a prefix argument, if interactive), the
  3752. `texinfo-update-node' and `texinfo-make-menu' functions do their jobs
  3753. in the region.
  3754.  
  3755. To use the updating commands, you must structure your Texinfo file
  3756. hierarchically, such that each `@node' line, with the exception of the
  3757. Top node, is accompanied by some kind of section line, such as an
  3758. `@chapter' or `@section' line.
  3759.  
  3760. If the file has a `top' node, it must be called `top' or `Top' and
  3761. be the first node in the file.
  3762.  
  3763. Entering Texinfo mode calls the value of text-mode-hook, and then the
  3764. value of texinfo-mode-hook." t nil)
  3765.  
  3766. ;;;***
  3767.  
  3768. ;;;### (autoloads (tc-recenter tc-scroll-down tc-scroll-up tc-scroll-line tc-associated-buffer tc-merge tc-dissociate tc-split tc-associate-buffer tc-two-columns) "two-column" "modes/two-column.el" (12282 39211))
  3769. ;;; Generated autoloads from modes/two-column.el
  3770.  
  3771. (defvar tc-mode-map nil "\
  3772. Keymap for commands for two-column mode.")
  3773.  
  3774. (if tc-mode-map nil (setq tc-mode-map (make-sparse-keymap)) (define-key tc-mode-map "1" 'tc-merge) (define-key tc-mode-map "2" 'tc-two-columns) (define-key tc-mode-map "b" 'tc-associate-buffer) (define-key tc-mode-map "d" 'tc-dissociate) (define-key tc-mode-map "\^L" 'tc-recenter) (define-key tc-mode-map "o" 'tc-associated-buffer) (define-key tc-mode-map "s" 'tc-split) (define-key tc-mode-map "{" 'shrink-window-horizontally) (define-key tc-mode-map "}" 'enlarge-window-horizontally) (define-key tc-mode-map " " 'tc-scroll-up) (define-key tc-mode-map "" 'tc-scroll-down) (define-key tc-mode-map "
  3775. " 'tc-scroll-line))
  3776.  
  3777. (global-set-key "6" tc-mode-map)
  3778.  
  3779. (autoload 'tc-two-columns "two-column" "\
  3780. Split current window vertically for two-column editing.
  3781.  
  3782. When called the first time, associates a buffer with the current
  3783. buffer.  Both buffers are put in two-column minor mode and
  3784. tc-mode-hook gets called on both.  These buffers remember
  3785. about one another, even when renamed.
  3786.  
  3787. When called again, restores the screen layout with the current buffer
  3788. first and the associated buffer to it's right.
  3789.  
  3790. If you include long lines, i.e which will span both columns (eg.
  3791. source code), they should be in what will be the first column, with
  3792. the associated buffer having empty lines next to them.
  3793.  
  3794. You have the following commands at your disposal:
  3795.  
  3796. \\[tc-two-columns]   Rearrange screen
  3797. \\[tc-associate-buffer]   Reassociate buffer after changing major mode
  3798. \\[tc-scroll-up]   Scroll both buffers up by a screenfull
  3799. \\[tc-scroll-down]   Scroll both buffers down by a screenful
  3800. \\[tc-scroll-line]   Scroll both buffers up by one or more lines
  3801. \\[tc-recenter]   Recenter and realign other buffer
  3802. \\[shrink-window-horizontally], \\[enlarge-window-horizontally]   Shrink, enlarge current column
  3803. \\[tc-associated-buffer]   Switch to associated buffer
  3804. \\[tc-merge]   Merge both buffers
  3805.  
  3806. These keybindings can be customized in your ~/.emacs by `tc-prefix'
  3807. and `tc-mode-map'.
  3808.  
  3809. The appearance of the screen can be customized by the variables
  3810. `tc-window-width', `tc-beyond-fill-column',
  3811. `tc-mode-line-format' and `truncate-partial-width-windows'." t nil)
  3812.  
  3813. (autoload 'tc-associate-buffer "two-column" "\
  3814. Associate another buffer with this one in two-column minor mode.
  3815. Can also be used to associate a just previously visited file, by
  3816. accepting the proposed default buffer.
  3817.  
  3818. See  \\[tc-two-columns]  and  `lisp/two-column.el'  for further details." t nil)
  3819.  
  3820. (autoload 'tc-split "two-column" "\
  3821. Unmerge a two-column text into two buffers in two-column minor mode.
  3822. The text is unmerged at the cursor's column which becomes the local
  3823. value of `tc-window-width'.  Only lines that have the ARG same
  3824. preceding characters at that column get split.  The ARG preceding
  3825. characters without any leading whitespace become the local value for
  3826. `tc-separator'.  This way lines that continue across both
  3827. columns remain untouched in the first buffer.
  3828.  
  3829. This function can be used with a prototype line, to set up things as
  3830. you like them.  You write the first line of each column with the
  3831. separator you like and then unmerge that line.  E.g.:
  3832.  
  3833. First column's text    sSs  Second columns text
  3834.                \\___/\\
  3835.             /    \\
  3836.    5 character Separator      You type  M-5 \\[tc-split]  with the point here
  3837.  
  3838. See  \\[tc-two-columns]  and  `lisp/two-column.el'  for further details." t nil)
  3839.  
  3840. (autoload 'tc-dissociate "two-column" "\
  3841. Turn off two-column minor mode in current and associated buffer.
  3842. If the associated buffer is unmodified and empty, it is killed." t nil)
  3843.  
  3844. (autoload 'tc-merge "two-column" "\
  3845. Merges the associated buffer with the current buffer.
  3846. They get merged at the column, which is the value of
  3847. `tc-window-width', i.e. usually at the vertical window
  3848. separator.  This separator gets replaced with white space.  Beyond
  3849. that the value of gets inserted on merged lines.  The two columns are
  3850. thus pasted side by side, in a single text.  If the other buffer is
  3851. not displayed to the left of this one, then this one becomes the left
  3852. column.
  3853.  
  3854. If you want `tc-separator' on empty lines in the second column,
  3855. you should put just one space in them.  In the final result, you can strip
  3856. off trailing spaces with \\[beginning-of-buffer] \\[replace-regexp] [ SPC TAB ] + $ RET RET" t nil)
  3857.  
  3858. (autoload 'tc-associated-buffer "two-column" "\
  3859. Switch to associated buffer." t nil)
  3860.  
  3861. (autoload 'tc-scroll-line "two-column" "\
  3862. Scroll current window upward by ARG lines.
  3863. The associated window gets scrolled to the same line." t nil)
  3864.  
  3865. (autoload 'tc-scroll-up "two-column" "\
  3866. Scroll current window upward by ARG screens.
  3867. The associated window gets scrolled to the same line." t nil)
  3868.  
  3869. (autoload 'tc-scroll-down "two-column" "\
  3870. Scroll current window downward by ARG screens.
  3871. The associated window gets scrolled to the same line." t nil)
  3872.  
  3873. (autoload 'tc-recenter "two-column" "\
  3874. Center point in window.  With ARG, put point on line ARG.
  3875. This counts from bottom if ARG is negative.  The associated window
  3876. gets scrolled to the same line." t nil)
  3877.  
  3878. ;;;***
  3879.  
  3880. ;;;### (autoloads (view-mode view-minor-mode view-buffer-other-window view-file-other-window view-buffer view-file) "view-less" "modes/view-less.el" (12263 29480))
  3881. ;;; Generated autoloads from modes/view-less.el
  3882.  
  3883. (autoload 'view-file "view-less" "\
  3884. Find FILE, enter view mode.  With prefix arg OTHER-P, use other window." t nil)
  3885.  
  3886. (autoload 'view-buffer "view-less" "\
  3887. Switch to BUF, enter view mode.  With prefix arg use other window." t nil)
  3888.  
  3889. (autoload 'view-file-other-window "view-less" "\
  3890. Find FILE in other window, and enter view mode." t nil)
  3891.  
  3892. (autoload 'view-buffer-other-window "view-less" "\
  3893. Switch to BUFFER in another window, and enter view mode." t nil)
  3894.  
  3895. (autoload 'view-minor-mode "view-less" "\
  3896. Minor mode for viewing text, with bindings like `less'.
  3897. Commands are:
  3898. \\<view-minor-mode-map>
  3899. 0..9    prefix args
  3900. -    prefix minus
  3901. \\[scroll-up]    page forward
  3902. \\[scroll-down]    page back
  3903. \\[view-scroll-lines-up]    scroll prefix-arg lines forward, default 1.
  3904. \\[view-scroll-lines-down]    scroll prefix-arg lines backward, default 1.
  3905. \\[view-scroll-some-lines-down]    scroll prefix-arg lines backward, default 10.
  3906. \\[view-scroll-some-lines-up]    scroll prefix-arg lines forward, default 10.
  3907. \\[what-line]    print line number
  3908. \\[view-mode-describe]    print this help message
  3909. \\[view-search-forward]    regexp search, uses previous string if you just hit RET
  3910. \\[view-search-backward]    as above but searches backward
  3911. \\[view-repeat-search]    repeat last search
  3912. \\[view-goto-line]    goto line prefix-arg, default 1
  3913. \\[view-last-windowful]    goto line prefix-arg, default last line
  3914. \\[view-goto-percent]    goto a position by percentage
  3915. \\[toggle-truncate-lines]    toggle truncate-lines
  3916. \\[view-file]    view another file
  3917. \\[view-buffer]    view another buffer
  3918. \\[view-cleanup-backspaces]    cleanup backspace constructions
  3919. \\[shell-command]    execute a shell command
  3920. \\[shell-command-on-region]    execute a shell command with the region as input
  3921. \\[view-quit]    exit view-mode, and bury the current buffer.
  3922.  
  3923. If invoked with the optional (prefix) arg non-nil, view-mode cleans up
  3924. backspace constructions.
  3925.  
  3926. More precisely:
  3927. \\{view-minor-mode-map}" t nil)
  3928.  
  3929. (autoload 'view-mode "view-less" "\
  3930. View the current buffer using view-minor-mode.  This exists to be 99.9%
  3931. compatible with the implementations of `view-mode' in view.el and older
  3932. versions of view-less.el." t nil)
  3933.  
  3934. (defun auto-view-mode ()
  3935.   "If the file of the current buffer is not writable, call view-mode.
  3936. This is meant to be added to `find-file-hooks'."
  3937.   (or (file-writable-p buffer-file-name)
  3938.       (view-minor-mode)))
  3939.  
  3940. ;;;***
  3941.  
  3942. ;;;### (autoloads (xpm-mode) "xpm-mode" "modes/xpm-mode.el" (12294 55544))
  3943. ;;; Generated autoloads from modes/xpm-mode.el
  3944.  
  3945. (autoload 'xpm-mode "xpm-mode" "\
  3946. Treat the current buffer as an xpm file and colorize it.
  3947.  
  3948.   Shift-button-1 lets you paint by dragging the mouse.  Shift-button-1 on a
  3949. color definition line will change the current painting color to that line's
  3950. value.
  3951.  
  3952.   Characters inserted from the keyboard will NOT be colored properly yet.
  3953. Use the mouse, or do xpm-init (\\[xpm-init]) after making changes.
  3954.  
  3955. \\[xpm-add-color] Add a new color, prompting for character and value
  3956. \\[xpm-show-image] show the current image at the top of the buffer
  3957. \\[xpm-parse-color] parse the current line's color definition and add
  3958.    it to the color table.  Provided as a means of changing colors.
  3959. XPM minor mode bindings:
  3960. \\{xpm-mode-map}" t nil)
  3961.  
  3962. ;;;***
  3963.  
  3964. ;;;### (autoloads (br-env-load br-env-browse) "br-env" "oobr/br-env.el" (12355 23865))
  3965. ;;; Generated autoloads from oobr/br-env.el
  3966.  
  3967. (autoload 'br-env-browse "br-env" "\
  3968. Invoke the OO-Browser on ENV-FILE." t nil)
  3969.  
  3970. (autoload 'br-env-load "br-env" "\
  3971. Load browser Environment or spec from optional ENV-FILE or 'br-env-file'.
  3972. Non-nil PROMPT means prompt user before building tables.
  3973. Non-nil NO-BUILD means skip build of Environment entirely.
  3974. Return t if load is successful, else nil." t nil)
  3975.  
  3976. ;;;***
  3977.  
  3978. ;;;### (autoloads (oobr) "br-start" "oobr/br-start.el" (12193 28637))
  3979. ;;; Generated autoloads from oobr/br-start.el
  3980.  
  3981. (autoload 'oobr "br-start" "\
  3982. Prompt for a language over which to run the OO-Browser.
  3983. Optional prefix argument OPEN-ENV-FLAG prompts for an OO-Browser environment
  3984. to open or for a new environment to be specified." t nil)
  3985.  
  3986. ;;;***
  3987.  
  3988. ;;;### (autoloads (br-to-from-viewer br-add-class-file) "br" "oobr/br.el" (12294 59329))
  3989. ;;; Generated autoloads from oobr/br.el
  3990.  
  3991. (autoload 'br-add-class-file "br" "\
  3992. Add a file of classes to the current Environment.
  3993. Interactively or when optional CLASS-PATH is nil, CLASS-PATH defaults to the
  3994. current buffer file pathname.  If optional LIB-TABLE-P is non-nil, add to
  3995. Library Environment, otherwise add to System Environment.  If optional
  3996. SAVE-FILE is t, the Environment is then stored to the filename given by
  3997. 'br-env-file'.  If SAVE-FILE is non-nil and not t, its string value is used
  3998. as the file to which to save the Environment." t nil)
  3999.  
  4000. (autoload 'br-to-from-viewer "br" "\
  4001. Move point to viewer window or back to last recorded listing window." t nil)
  4002.  
  4003. ;;;***
  4004.  
  4005. ;;;### (autoloads (c++-browse) "c++-browse" "oobr/c++-browse.el" (12202 46037))
  4006. ;;; Generated autoloads from oobr/c++-browse.el
  4007.  
  4008. (autoload 'c++-browse "c++-browse" "\
  4009. Invoke the C++ OO-Browser.
  4010. This allows browsing through C++ library and system class hierarchies.  With
  4011. an optional non-nil prefix argument ENV-FILE, prompt for Environment file to
  4012. use.  Alternatively, a string value of ENV-FILE is used as the Environment
  4013. file name.  See also the file \"br-help\"." t nil)
  4014.  
  4015. ;;;***
  4016.  
  4017. ;;;### (autoloads (clos-browse) "clos-brows" "oobr/clos-brows.el" (12193 28641))
  4018. ;;; Generated autoloads from oobr/clos-brows.el
  4019.  
  4020. (autoload 'clos-browse "clos-brows" "\
  4021. Invoke the CLOS OO-Browser.
  4022. This allows browsing through CLOS library and system class hierarchies.  With
  4023. an optional non-nil prefix argument ENV-FILE, prompt for Environment file
  4024. to use.  Alternatively, a string value of ENV-FILE is used as the
  4025. Environment file name.  See also the file \"br-help\"." t nil)
  4026.  
  4027. ;;;***
  4028.  
  4029. ;;;### (autoloads (eif-browse) "eif-browse" "oobr/eif-browse.el" (12193 28642))
  4030. ;;; Generated autoloads from oobr/eif-browse.el
  4031.  
  4032. (autoload 'eif-browse "eif-browse" "\
  4033. Invoke the Eiffel OO-Browser.
  4034. This allows browsing through Eiffel library and system class hierarchies.
  4035. With an optional prefix arg ENV-FILE equal to t, prompt for Environment file
  4036. to use.  Alternatively, a string value of ENV-FILE is used as the Environment
  4037. file name.  See also the file \"br-help\"." t nil)
  4038.  
  4039. ;;;***
  4040.  
  4041. ;;;### (autoloads (info-browse) "info-brows" "oobr/info-brows.el" (12193 28645))
  4042. ;;; Generated autoloads from oobr/info-brows.el
  4043.  
  4044. (autoload 'info-browse "info-brows" "\
  4045. Invoke the Info OO-Browser.
  4046. This allows browsing through Info library and system class hierarchies.  With
  4047. an optional non-nil prefix argument ENV-FILE, prompt for Environment file to
  4048. use.  Alternatively, a string value of ENV-FILE is used as the Environment
  4049. file name.  See also the file \"br-help\"." t nil)
  4050.  
  4051. ;;;***
  4052.  
  4053. ;;;### (autoloads (java-browse) "java-brows" "oobr/java-brows.el" (12355 23869))
  4054. ;;; Generated autoloads from oobr/java-brows.el
  4055.  
  4056. (autoload 'java-browse "java-brows" "\
  4057. Invoke the Java OO-Browser.
  4058. This allows browsing through Java library and system class hierarchies.  With
  4059. an optional non-nil prefix argument ENV-FILE, prompt for Environment file to
  4060. use.  Alternatively, a string value of ENV-FILE is used as the Environment
  4061. file name.  See also the file \"br-help\"." t nil)
  4062.  
  4063. ;;;***
  4064.  
  4065. ;;;### (autoloads (objc-browse) "objc-brows" "oobr/objc-brows.el" (12202 46038))
  4066. ;;; Generated autoloads from oobr/objc-brows.el
  4067.  
  4068. (autoload 'objc-browse "objc-brows" "\
  4069. Invoke the Objective-C OO-Browser.
  4070. This allows browsing through Objective-C library and system class
  4071. hierarchies.  With an optional non-nil prefix argument ENV-FILE, prompt for
  4072. Environment file to use.  Alternatively, a string value of ENV-FILE is used
  4073. as the Environment file name.  See also the file \"br-help\"." t nil)
  4074.  
  4075. ;;;***
  4076.  
  4077. ;;;### (autoloads (smt-browse) "smt-browse" "oobr/smt-browse.el" (12193 28646))
  4078. ;;; Generated autoloads from oobr/smt-browse.el
  4079.  
  4080. (autoload 'smt-browse "smt-browse" "\
  4081. Invoke the Smalltalk OO-Browser.
  4082. This allows browsing through Smalltalk library and system class hierarchies.
  4083. With an optional non-nil prefix argument ENV-FILE, prompt for Environment
  4084. file to use.  Alternatively, a string value of ENV-FILE is used as the
  4085. Environment file name.  See also the file \"br-help\"." t nil)
  4086.  
  4087. ;;;***
  4088.  
  4089. ;;;### (autoloads (add-log-current-defun change-log-mode add-change-log-entry-other-window add-change-log-entry find-change-log prompt-for-change-log-name) "add-log" "packages/add-log.el" (12147 26450))
  4090. ;;; Generated autoloads from packages/add-log.el
  4091.  
  4092. (defvar change-log-default-name nil "\
  4093. *Name of a change log file for \\[add-change-log-entry].")
  4094.  
  4095. (defvar add-log-current-defun-function nil "\
  4096. *If non-nil, function to guess name of current function from surrounding text.
  4097. \\[add-change-log-entry] calls this function (if nil, `add-log-current-defun'
  4098. instead) with no arguments.  It returns a string or nil if it cannot guess.")
  4099.  
  4100. (defvar add-log-full-name nil "\
  4101. *Full name of user, for inclusion in ChangeLog daily headers.
  4102. This defaults to the value returned by the `user-full-name' function.")
  4103.  
  4104. (defvar add-log-mailing-address nil "\
  4105. *Electronic mail address of user, for inclusion in ChangeLog daily headers.
  4106. This defaults to the value of `user-mail-address'.")
  4107.  
  4108. (autoload 'prompt-for-change-log-name "add-log" "\
  4109. Prompt for a change log name." nil nil)
  4110.  
  4111. (autoload 'find-change-log "add-log" "\
  4112. Find a change log file for \\[add-change-log-entry] and return the name.
  4113. Optional arg FILE-NAME specifies the file to use.
  4114. If FILE-NAME is nil, use the value of `change-log-default-name' if non-nil.
  4115. Otherwise, search in the current directory and its successive parents
  4116. for a file named `ChangeLog' (or whatever we use on this operating system).
  4117.  
  4118. Once a file is found, `change-log-default-name' is set locally in the
  4119. current buffer to the complete file name." nil nil)
  4120.  
  4121. (autoload 'add-change-log-entry "add-log" "\
  4122. Find change log file and add an entry for today.
  4123. Optional arg (interactive prefix) non-nil means prompt for user name and site.
  4124. Second arg is file name of change log.  If nil, uses `change-log-default-name'.
  4125. Third arg OTHER-WINDOW non-nil means visit in other window.
  4126. Fourth arg NEW-ENTRY non-nil means always create a new entry at the front;
  4127. never append to an existing entry." t nil)
  4128.  
  4129. (autoload 'add-change-log-entry-other-window "add-log" "\
  4130. Find change log file in other window and add an entry for today.
  4131. Optional arg (interactive prefix) non-nil means prompt for user name and site.
  4132. Second arg is file name of change log.  If nil, uses `change-log-default-name'." t nil)
  4133.  
  4134. (define-key ctl-x-4-map "a" 'add-change-log-entry-other-window)
  4135.  
  4136. (autoload 'change-log-mode "add-log" "\
  4137. Major mode for editing change logs; like Indented Text Mode.
  4138. Prevents numeric backups and sets `left-margin' to 8 and `fill-column' to 74.
  4139. New log entries are usually made with \\[add-change-log-entry] or \\[add-change-log-entry-other-window].
  4140. Each entry behaves as a paragraph, and the entries for one day as a page.
  4141. Runs `change-log-mode-hook'." t nil)
  4142.  
  4143. (autoload 'add-log-current-defun "add-log" "\
  4144. Return name of function definition point is in, or nil.
  4145.  
  4146. Understands C, Lisp, LaTeX (\"functions\" are chapters, sections, ...),
  4147. Texinfo (@node titles), and Fortran.
  4148.  
  4149. Other modes are handled by a heuristic that looks in the 10K before
  4150. point for uppercase headings starting in the first column or
  4151. identifiers followed by `:' or `=', see variable
  4152. `add-log-current-defun-header-regexp'.
  4153.  
  4154. Has a preference of looking backwards." nil nil)
  4155.  
  4156. ;;;***
  4157.  
  4158. ;;;### (autoloads (super-apropos apropos) "apropos" "packages/apropos.el" (12206 14791))
  4159. ;;; Generated autoloads from packages/apropos.el
  4160.  
  4161. (autoload 'apropos "apropos" "\
  4162. Show all symbols whose names contain matches for REGEXP.
  4163. If optional argument DO-ALL is non-nil, does more (time-consuming) work such as
  4164. showing key bindings.  Optional argument PRED is called with each symbol, and
  4165. if it returns nil, the symbol is not shown.  Returns list of symbols and
  4166. documentation found." t nil)
  4167.  
  4168. (autoload 'super-apropos "apropos" "\
  4169. Show symbols whose names/documentation contain matches for REGEXP.
  4170. If optional argument DO-ALL is non-nil, does more (time-consuming) work such as
  4171. showing key bindings and documentation that is not stored in the documentation
  4172. file.  Returns list of symbols and documentation found." t nil)
  4173.  
  4174. ;;;***
  4175.  
  4176. ;;;### (autoloads (bookmark-menu-delete bookmark-menu-rename bookmark-menu-locate bookmark-menu-jump bookmark-menu-insert bookmark-bmenu-list bookmark-load bookmark-save bookmark-write bookmark-delete bookmark-insert bookmark-rename bookmark-insert-location bookmark-relocate bookmark-jump bookmark-set) "bookmark" "packages/bookmark.el" (12294 55507))
  4177. ;;; Generated autoloads from packages/bookmark.el
  4178.  
  4179. (if (symbolp (key-binding "r")) nil (progn (define-key ctl-x-map "rb" 'bookmark-jump) (define-key ctl-x-map "rm" 'bookmark-set) (define-key ctl-x-map "rl" 'bookmark-bmenu-list)))
  4180.  
  4181. (defvar bookmark-map nil "\
  4182. Keymap containing bindings to bookmark functions.
  4183. It is not bound to any key by default: to bind it
  4184. so that you have a bookmark prefix, just use `global-set-key' and bind a
  4185. key of your choice to `bookmark-map'.  All interactive bookmark
  4186. functions have a binding in this keymap.")
  4187.  
  4188. (define-prefix-command 'bookmark-map)
  4189.  
  4190. (define-key bookmark-map "x" 'bookmark-set)
  4191.  
  4192. (define-key bookmark-map "m" 'bookmark-set)
  4193.  
  4194. (define-key bookmark-map "j" 'bookmark-jump)
  4195.  
  4196. (define-key bookmark-map "g" 'bookmark-jump)
  4197.  
  4198. (define-key bookmark-map "i" 'bookmark-insert)
  4199.  
  4200. (define-key bookmark-map "e" 'edit-bookmarks)
  4201.  
  4202. (define-key bookmark-map "f" 'bookmark-insert-location)
  4203.  
  4204. (define-key bookmark-map "r" 'bookmark-rename)
  4205.  
  4206. (define-key bookmark-map "d" 'bookmark-delete)
  4207.  
  4208. (define-key bookmark-map "l" 'bookmark-load)
  4209.  
  4210. (define-key bookmark-map "w" 'bookmark-write)
  4211.  
  4212. (define-key bookmark-map "s" 'bookmark-save)
  4213.  
  4214. (autoload 'bookmark-set "bookmark" "\
  4215. Set a bookmark named NAME inside a file.
  4216. If name is nil, then the user will be prompted.
  4217. With prefix arg, will not overwrite a bookmark that has the same name
  4218. as NAME if such a bookmark already exists, but instead will \"push\"
  4219. the new bookmark onto the bookmark alist.  Thus the most recently set
  4220. bookmark with name NAME would be the one in effect at any given time,
  4221. but the others are still there, should you decide to delete the most
  4222. recent one.
  4223.  
  4224. To yank words from the text of the buffer and use them as part of the
  4225. bookmark name, type C-w while setting a bookmark.  Successive C-w's
  4226. yank successive words.
  4227.  
  4228. Typing C-u inserts the name of the last bookmark used in the buffer
  4229. \(as an aid in using a single bookmark name to track your progress
  4230. through a large file).  If no bookmark was used, then C-u inserts the
  4231. name of the file being visited.
  4232.  
  4233. Use \\[bookmark-delete] to remove bookmarks (you give it a name,
  4234. and it removes only the first instance of a bookmark with that name from
  4235. the list of bookmarks.)" t nil)
  4236.  
  4237. (autoload 'bookmark-jump "bookmark" "\
  4238. Jump to bookmark BOOKMARK (a point in some file).  
  4239. You may have a problem using this function if the value of variable
  4240. `bookmark-alist' is nil.  If that happens, you need to load in some
  4241. bookmarks.  See help on function `bookmark-load' for more about
  4242. this.
  4243.  
  4244. If the file pointed to by BOOKMARK no longer exists, you will be asked
  4245. if you wish to give the bookmark a new location, and bookmark-jump
  4246. will then jump to the new location, as well as recording it in place
  4247. of the old one in the permanent bookmark record." t nil)
  4248.  
  4249. (autoload 'bookmark-relocate "bookmark" "\
  4250. Relocate BOOKMARK -- prompts for a filename, and makes an already
  4251. existing bookmark point to that file, instead of the one it used to
  4252. point at.  Useful when a file has been renamed after a bookmark was
  4253. set in it." t nil)
  4254.  
  4255. (autoload 'bookmark-insert-location "bookmark" "\
  4256. Insert the name of the file associated with BOOKMARK.
  4257. Optional second arg NO-HISTORY means don't record this in the
  4258. minibuffer history list `bookmark-history'." t nil)
  4259.  
  4260. (autoload 'bookmark-rename "bookmark" "\
  4261. Change the name of OLD bookmark to NEW name.  If called from
  4262. keyboard, prompts for OLD and NEW.  If called from menubar, OLD is
  4263. selected from a menu, and prompts for NEW.
  4264.  
  4265. If called from Lisp, prompts for NEW if only OLD was passed as an
  4266. argument.  If called with two strings, then no prompting is done.  You
  4267. must pass at least OLD when calling from Lisp.
  4268.  
  4269. While you are entering the new name, consecutive C-w's insert
  4270. consectutive words from the text of the buffer into the new bookmark
  4271. name." t nil)
  4272.  
  4273. (autoload 'bookmark-insert "bookmark" "\
  4274. Insert the text of the file pointed to by bookmark BOOKMARK.  
  4275. You may have a problem using this function if the value of variable
  4276. `bookmark-alist' is nil.  If that happens, you need to load in some
  4277. bookmarks.  See help on function `bookmark-load' for more about
  4278. this." t nil)
  4279.  
  4280. (autoload 'bookmark-delete "bookmark" "\
  4281. Delete BOOKMARK from the bookmark list.  
  4282. Removes only the first instance of a bookmark with that name.  If
  4283. there are one or more other bookmarks with the same name, they will
  4284. not be deleted.  Defaults to the \"current\" bookmark (that is, the
  4285. one most recently used in this file, if any).
  4286. Optional second arg BATCH means don't update the bookmark list buffer,
  4287. probably because we were called from there." t nil)
  4288.  
  4289. (autoload 'bookmark-write "bookmark" "\
  4290. Write bookmarks to a file (for which the user will be prompted
  4291. interactively).  Don't use this in Lisp programs; use bookmark-save
  4292. instead." t nil)
  4293.  
  4294. (autoload 'bookmark-save "bookmark" "\
  4295. Save currently defined bookmarks.
  4296. Saves by default in the file defined by the variable
  4297. `bookmark-default-file'.  With a prefix arg, save it in file FILE
  4298. \(second argument).
  4299.  
  4300. If you are calling this from Lisp, the two arguments are PREFIX-ARG
  4301. and FILE, and if you just want it to write to the default file, then
  4302. pass no arguments.  Or pass in nil and FILE, and it will save in FILE
  4303. instead.  If you pass in one argument, and it is non-nil, then the
  4304. user will be interactively queried for a file to save in.
  4305.  
  4306. When you want to load in the bookmarks from a file, use
  4307. `bookmark-load', \\[bookmark-load].  That function will prompt you
  4308. for a file, defaulting to the file defined by variable
  4309. `bookmark-default-file'." t nil)
  4310.  
  4311. (autoload 'bookmark-load "bookmark" "\
  4312. Load bookmarks from FILE (which must be in bookmark format).
  4313. Appends loaded bookmarks to the front of the list of bookmarks.  If
  4314. optional second argument REVERT is non-nil, existing bookmarks are
  4315. destroyed.  Optional third arg NO-MSG means don't display any messages
  4316. while loading.
  4317.  
  4318. If you load a file that doesn't contain a proper bookmark alist, you
  4319. will corrupt Emacs's bookmark list.  Generally, you should only load
  4320. in files that were created with the bookmark functions in the first
  4321. place.  Your own personal bookmark file, `~/.emacs.bmk', is
  4322. maintained automatically by Emacs; you shouldn't need to load it
  4323. explicitly." t nil)
  4324.  
  4325. (autoload 'bookmark-bmenu-list "bookmark" "\
  4326. Display a list of existing bookmarks.
  4327. The list is displayed in a buffer named `*Bookmark List*'.
  4328. The leftmost column displays a D if the bookmark is flagged for
  4329. deletion, or > if it is flagged for displaying." t nil)
  4330.  
  4331. (defalias 'list-bookmarks 'bookmark-bmenu-list)
  4332.  
  4333. (defalias 'edit-bookmarks 'bookmark-bmenu-list)
  4334.  
  4335. (autoload 'bookmark-menu-insert "bookmark" "\
  4336. Insert the text of the file pointed to by bookmark BOOKMARK.  
  4337. You may have a problem using this function if the value of variable
  4338. `bookmark-alist' is nil.  If that happens, you need to load in some
  4339. bookmarks.  See help on function `bookmark-load' for more about
  4340. this.
  4341.  
  4342. Warning: this function only takes an EVENT as argument.  Use the
  4343. corresponding bookmark function from Lisp (the one without the
  4344. \"-menu-\" in its name)." t nil)
  4345.  
  4346. (autoload 'bookmark-menu-jump "bookmark" "\
  4347. Jump to bookmark BOOKMARK (a point in some file).  
  4348. You may have a problem using this function if the value of variable
  4349. `bookmark-alist' is nil.  If that happens, you need to load in some
  4350. bookmarks.  See help on function `bookmark-load' for more about
  4351. this.
  4352.  
  4353. Warning: this function only takes an EVENT as argument.  Use the
  4354. corresponding bookmark function from Lisp (the one without the
  4355. \"-menu-\" in its name)." t nil)
  4356.  
  4357. (autoload 'bookmark-menu-locate "bookmark" "\
  4358. Insert the name of the file associated with BOOKMARK. 
  4359. \(This is not the same as the contents of that file).
  4360.  
  4361. Warning: this function only takes an EVENT as argument.  Use the
  4362. corresponding bookmark function from Lisp (the one without the
  4363. \"-menu-\" in its name)." t nil)
  4364.  
  4365. (autoload 'bookmark-menu-rename "bookmark" "\
  4366. Change the name of OLD-BOOKMARK to NEWNAME.  
  4367. If called from keyboard, prompts for OLD-BOOKMARK and NEWNAME.
  4368. If called from menubar, OLD-BOOKMARK is selected from a menu, and
  4369. prompts for NEWNAME. 
  4370. If called from Lisp, prompts for NEWNAME if only OLD-BOOKMARK was
  4371. passed as an argument.  If called with two strings, then no prompting
  4372. is done.  You must pass at least OLD-BOOKMARK when calling from Lisp.
  4373.  
  4374. While you are entering the new name, consecutive C-w's insert
  4375. consectutive words from the text of the buffer into the new bookmark
  4376. name.
  4377.  
  4378. Warning: this function only takes an EVENT as argument.  Use the
  4379. corresponding bookmark function from Lisp (the one without the
  4380. \"-menu-\" in its name)." t nil)
  4381.  
  4382. (autoload 'bookmark-menu-delete "bookmark" "\
  4383. Delete the bookmark named NAME from the bookmark list.  
  4384. Removes only the first instance of a bookmark with that name.  If
  4385. there are one or more other bookmarks with the same name, they will
  4386. not be deleted.  Defaults to the \"current\" bookmark (that is, the
  4387. one most recently used in this file, if any).
  4388.  
  4389. Warning: this function only takes an EVENT as argument.  Use the
  4390. corresponding bookmark function from Lisp (the one without the
  4391. \"-menu-\" in its name)." t nil)
  4392.  
  4393.  
  4394. ;;;***
  4395.  
  4396. ;;;### (autoloads (command-history-mode list-command-history repeat-matching-complex-command) "chistory" "packages/chistory.el" (12147 26456))
  4397. ;;; Generated autoloads from packages/chistory.el
  4398.  
  4399. (autoload 'repeat-matching-complex-command "chistory" "\
  4400. Edit and re-evaluate complex command with name matching PATTERN.
  4401. Matching occurrences are displayed, most recent first, until you
  4402. select a form for evaluation.  If PATTERN is empty (or nil), every form
  4403. in the command history is offered.  The form is placed in the minibuffer
  4404. for editing and the result is evaluated." t nil)
  4405.  
  4406. (autoload 'list-command-history "chistory" "\
  4407. List history of commands typed to minibuffer.
  4408. The number of commands listed is controlled by `list-command-history-max'.
  4409. Calls value of `list-command-history-filter' (if non-nil) on each history
  4410. element to judge if that element should be excluded from the list.
  4411.  
  4412. The buffer is left in Command History mode." t nil)
  4413.  
  4414. (autoload 'command-history-mode "chistory" "\
  4415. Major mode for examining commands from `command-history'.
  4416. The number of commands listed is controlled by `list-command-history-max'.
  4417. The command history is filtered by `list-command-history-filter' if non-nil.
  4418. Use \\<command-history-map>\\[command-history-repeat] to repeat the command on the current line.
  4419.  
  4420. Otherwise much like Emacs-Lisp Mode except that there is no self-insertion
  4421. and digits provide prefix arguments.  Tab does not indent.
  4422. \\{command-history-map}
  4423. Calls the value of `command-history-hook' if that is non-nil.
  4424. The Command History listing is recomputed each time this mode is invoked." t nil)
  4425.  
  4426. ;;;***
  4427.  
  4428. ;;;### (autoloads (display-column-mode) "column" "packages/column.el" (12073 20633))
  4429. ;;; Generated autoloads from packages/column.el
  4430.  
  4431. (autoload 'display-column-mode "column" "\
  4432. Toggle display column mode.
  4433. With prefix arg, turn display column mode on iff arg is positive.
  4434.  
  4435. When display column mode is on, the current column and line number are
  4436. displayed in the mode line." t nil)
  4437.  
  4438. ;;;***
  4439.  
  4440. ;;;### (autoloads (compare-windows) "compare-w" "packages/compare-w.el" (12211 28123))
  4441. ;;; Generated autoloads from packages/compare-w.el
  4442.  
  4443. (autoload 'compare-windows "compare-w" "\
  4444. Compare text in current window with text in next window.
  4445. Compares the text starting at point in each window,
  4446. moving over text in each one as far as they match.
  4447.  
  4448. A prefix arg means ignore changes in whitespace.
  4449. The variable `compare-windows-whitespace' controls how whitespace is skipped.
  4450.  
  4451. If `compare-ignore-case' is non-nil, changes in case are also ignored." t nil)
  4452.  
  4453. ;;;***
  4454.  
  4455. ;;;### (autoloads (first-error previous-error next-error compilation-minor-mode grep compile) "compile" "packages/compile.el" (12322 9368))
  4456. ;;; Generated autoloads from packages/compile.el
  4457.  
  4458. (defvar compilation-mode-hook nil "\
  4459. *List of hook functions run by `compilation-mode' (see `run-hooks').")
  4460.  
  4461. (defvar compilation-window-height nil "\
  4462. *Number of lines in a compilation window.  If nil, use Emacs default.")
  4463.  
  4464. (defvar compilation-buffer-name-function nil "\
  4465. Function to compute the name of a compilation buffer.
  4466. The function receives one argument, the name of the major mode of the
  4467. compilation buffer.  It should return a string.
  4468. nil means compute the name with `(concat \"*\" (downcase major-mode) \"*\")'.")
  4469.  
  4470. (defvar compilation-finish-function nil "\
  4471. *Function to call when a compilation process finishes.
  4472. It is called with two arguments: the compilation buffer, and a string
  4473. describing how the process finished.")
  4474.  
  4475. (defvar compilation-search-path '(nil) "\
  4476. *List of directories to search for source files named in error messages.
  4477. Elements should be directory names, not file names of directories.
  4478. nil as an element means to try the default directory.")
  4479.  
  4480. (autoload 'compile "compile" "\
  4481. Compile the program including the current buffer.  Default: run `make'.
  4482. Runs COMMAND, a shell command, in a separate process asynchronously
  4483. with output going to the buffer `*compilation*'.
  4484.  
  4485. You can then use the command \\[next-error] to find the next error message
  4486. and move to the source code that caused it.
  4487.  
  4488. To run more than one compilation at once, start one and rename the
  4489. `*compilation*' buffer to some other name with \\[rename-buffer].
  4490. Then start the next one.
  4491.  
  4492. The name used for the buffer is actually whatever is returned by
  4493. the function in `compilation-buffer-name-function', so you can set that
  4494. to a function that generates a unique name." t nil)
  4495.  
  4496. (autoload 'grep "compile" "\
  4497. Run grep, with user-specified args, and collect output in a buffer.
  4498. While grep runs asynchronously, you can use the \\[next-error] command
  4499. to find the text that grep hits refer to.
  4500.  
  4501. This command uses a special history list for its arguments, so you can
  4502. easily repeat a grep command." t nil)
  4503.  
  4504. (autoload 'compilation-minor-mode "compile" "\
  4505. Toggle compilation minor mode.
  4506. With arg, turn compilation mode on if and only if arg is positive.
  4507. See `compilation-mode'.
  4508. ! \\{compilation-mode-map}" t nil)
  4509.  
  4510. (autoload 'next-error "compile" "\
  4511. Visit next compilation error message and corresponding source code.
  4512. This operates on the output from the \\[compile] command.
  4513. If all preparsed error messages have been processed,
  4514. the error message buffer is checked for new ones.
  4515.  
  4516. A prefix arg specifies how many error messages to move;
  4517. negative means move back to previous error messages.
  4518. Just C-u as a prefix means reparse the error message buffer
  4519. and start at the first error.
  4520.  
  4521. \\[next-error] normally applies to the most recent compilation started,
  4522. but as long as you are in the middle of parsing errors from one compilation
  4523. output buffer, you stay with that compilation output buffer.
  4524.  
  4525. Use \\[next-error] in a compilation output buffer to switch to
  4526. processing errors from that compilation.
  4527.  
  4528. See variables `compilation-parse-errors-function' and
  4529. `compilation-error-regexp-alist' for customization ideas." t nil)
  4530.  
  4531. (autoload 'previous-error "compile" "\
  4532. Visit previous compilation error message and corresponding source code.
  4533. This operates on the output from the \\[compile] command." t nil)
  4534.  
  4535. (autoload 'first-error "compile" "\
  4536. Reparse the error message buffer and start at the first error
  4537. Visit corresponding source code.
  4538. This operates on the output from the \\[compile] command." t nil)
  4539.  
  4540. (define-key ctl-x-map "`" 'next-error)
  4541.  
  4542. ;;;***
  4543.  
  4544. ;;;### (autoloads (dabbrev-expand dabbrev-completion) "dabbrev" "packages/dabbrev.el" (12351 9723))
  4545. ;;; Generated autoloads from packages/dabbrev.el
  4546.  
  4547. (define-key global-map [(meta /)] 'dabbrev-expand)
  4548.  
  4549. (define-key global-map [(meta control /)] 'dabbrev-completion)
  4550.  
  4551. (autoload 'dabbrev-completion "dabbrev" "\
  4552. Completion on current word.
  4553. Like \\[dabbrev-expand] but finds all expansions in the current buffer
  4554. and presents suggestions for completion.
  4555.  
  4556. With a prefix argument, it searches all buffers accepted by the
  4557. function pointed out by `dabbrev-friend-buffer-function' to find the
  4558. completions.
  4559.  
  4560. If the prefix argument is 16 (which comes from C-u C-u),
  4561. then it searches *all* buffers.
  4562.  
  4563. With no prefix argument, it reuses an old completion list
  4564. if there is a suitable one already." t nil)
  4565.  
  4566. (autoload 'dabbrev-expand "dabbrev" "\
  4567. Expand previous word \"dynamically\".
  4568.  
  4569. Expands to the most recent, preceding word for which this is a prefix.
  4570. If no suitable preceding word is found, words following point are
  4571. considered.  If still no suitable word is found, then look in the
  4572. buffers accepted by the function pointed out by variable
  4573. `dabbrev-friend-buffer-function'.
  4574.  
  4575. A positive prefix argument, N, says to take the Nth backward *distinct*
  4576. possibility.  A negative argument says search forward.
  4577.  
  4578. If the cursor has not moved from the end of the previous expansion and
  4579. no argument is given, replace the previously-made expansion
  4580. with the next possible expansion not yet tried.
  4581.  
  4582. The variable `dabbrev-backward-only' may be used to limit the
  4583. direction of search to backward if set non-nil.
  4584.  
  4585. See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]." t nil)
  4586.  
  4587. ;;;***
  4588.  
  4589. ;;;### (autoloads (diff-backup diff) "diff" "packages/diff.el" (12211 28124))
  4590. ;;; Generated autoloads from packages/diff.el
  4591.  
  4592. (defvar diff-switches (purecopy "-c") "\
  4593. *A string or list of strings specifying switches to be be passed to diff.")
  4594.  
  4595. (autoload 'diff "diff" "\
  4596. Find and display the differences between OLD and NEW files.
  4597. Interactively the current buffer's file name is the default for NEW
  4598. and a backup file for NEW is the default for OLD.
  4599. With prefix arg, prompt for diff switches." t nil)
  4600.  
  4601. (autoload 'diff-backup "diff" "\
  4602. Diff this file with its backup file or vice versa.
  4603. Uses the latest backup, if there are several numerical backups.
  4604. If this file is a backup, diff it with its original.
  4605. The backup file is the first file given to `diff'." t nil)
  4606.  
  4607. ;;;***
  4608.  
  4609. ;;;### (autoloads (ediff-revision ediff-patch-buffer ediff-merge-revisions-with-ancestor ediff-merge-revisions ediff-merge-buffers-with-ancestor ediff-merge-buffers ediff-merge-files-with-ancestor ediff-merge-files ediff-regions-linewise ediff-regions-wordwise ediff-windows-linewise ediff-windows-wordwise ediff-merge-directory-revisions-with-ancestor ediff-merge-directory-revisions ediff-merge-directories-with-ancestor ediff-merge-directories ediff-directories3 ediff-directory-revisions ediff-directories ediff-buffers3 ediff-buffers ediff-files3 ediff-files ediff-patch-file) "ediff" "ediff/ediff.el" (12356 62998))
  4610. ;;; Generated autoloads from ediff/ediff.el
  4611.  
  4612. (autoload 'ediff-patch-file "ediff" "\
  4613. Run Ediff by patching FILE-TP-PATCH." t nil)
  4614.  
  4615. (defalias 'epatch 'ediff-patch-file)
  4616.  
  4617. (defalias 'epatch-buffer 'ediff-patch-buffer)
  4618.  
  4619. (autoload 'ediff-files "ediff" "\
  4620. Run Ediff on a pair of files, FILE-A and FILE-B." t nil)
  4621.  
  4622. (autoload 'ediff-files3 "ediff" "\
  4623. Run Ediff on three files, FILE-A, FILE-B, and FILE-C." t nil)
  4624.  
  4625. (defalias 'ediff3 'ediff-files3)
  4626.  
  4627. (defalias 'ediff 'ediff-files)
  4628.  
  4629. (autoload 'ediff-buffers "ediff" "\
  4630. Run Ediff on a pair of buffers, BUFFER-A and BUFFER-B." t nil)
  4631.  
  4632. (autoload 'ediff-buffers3 "ediff" "\
  4633. Run Ediff on three buffers, BUFFER-A, BUFFER-B, and BUFFER-C." t nil)
  4634.  
  4635. (autoload 'ediff-directories "ediff" "\
  4636. Run Ediff on a pair of directories, DIR1 and DIR2, comparing files that have
  4637. the same name in both. The third argument, REGEXP, is a regular expression that
  4638. further filters the file names." t nil)
  4639.  
  4640. (defalias 'edirs 'ediff-directories)
  4641.  
  4642. (autoload 'ediff-directory-revisions "ediff" "\
  4643. Run Ediff on a directory, DIR1, comparing its files with their revisions.
  4644. The second argument, REGEXP, is a regular expression that filters the file
  4645. names. Only the files that are under revision control are taken into account." t nil)
  4646.  
  4647. (defalias 'edir-revisions 'ediff-directory-revisions)
  4648.  
  4649. (autoload 'ediff-directories3 "ediff" "\
  4650. Run Ediff on three directories, DIR1, DIR2, and DIR3, comparing files that
  4651. have the same name in all three. The last argument, REGEXP, is a regular
  4652. expression that further filters the file names." t nil)
  4653.  
  4654. (defalias 'edirs3 'ediff-directories3)
  4655.  
  4656. (autoload 'ediff-merge-directories "ediff" "\
  4657. Run Ediff on a pair of directories, DIR1 and DIR2, merging files that have
  4658. the same name in both. The third argument, REGEXP, is a regular expression that
  4659. further filters the file names." t nil)
  4660.  
  4661. (defalias 'edirs-merge 'ediff-merge-directories)
  4662.  
  4663. (autoload 'ediff-merge-directories-with-ancestor "ediff" "\
  4664. Run Ediff on a pair of directories, DIR1 and DIR2, merging files that have
  4665. the same name in both. The third argument, REGEXP, is a regular expression that
  4666. further filters the file names." t nil)
  4667.  
  4668. (autoload 'ediff-merge-directory-revisions "ediff" "\
  4669. Run Ediff on a directory, DIR1, merging its files with their revisions.
  4670. The second argument, REGEXP, is a regular expression that filters the file
  4671. names. Only the files that are under revision control are taken into account." t nil)
  4672.  
  4673. (defalias 'edir-merge-revisions 'ediff-merge-directory-revisions)
  4674.  
  4675. (autoload 'ediff-merge-directory-revisions-with-ancestor "ediff" "\
  4676. Run Ediff on a directory, DIR1, merging its files with their revisions and ancestors.
  4677. The second argument, REGEXP, is a regular expression that filters the file
  4678. names. Only the files that are under revision control are taken into account." t nil)
  4679.  
  4680. (defalias 'edir-merge-revisions-with-ancestor 'ediff-merge-directory-revisions-with-ancestor)
  4681.  
  4682. (defalias 'edirs-merge-with-ancestor 'ediff-merge-directories-with-ancestor)
  4683.  
  4684. (autoload 'ediff-windows-wordwise "ediff" "\
  4685. Compare WIND-A and WIND-B, which are selected by clicking, wordwise.
  4686. With prefix argument, DUMB-MODE, or on a non-windowing display, works as
  4687. follows:
  4688. If WIND-A is nil, use selected window.
  4689. If WIND-B is nil, use window next to WIND-A." t nil)
  4690.  
  4691. (autoload 'ediff-windows-linewise "ediff" "\
  4692. Compare WIND-A and WIND-B, which are selected by clicking, linewise.
  4693. With prefix argument, DUMB-MODE, or on a non-windowing display, works as
  4694. follows:
  4695. If WIND-A is nil, use selected window.
  4696. If WIND-B is nil, use window next to WIND-A." t nil)
  4697.  
  4698. (autoload 'ediff-regions-wordwise "ediff" "\
  4699. Run Ediff on a pair of regions in two different buffers.
  4700. Regions (i.e., point and mark) are assumed to be set in advance.
  4701. This function is effective only for relatively small regions, up to 200
  4702. lines. For large regions, use `ediff-regions-linewise'." t nil)
  4703.  
  4704. (autoload 'ediff-regions-linewise "ediff" "\
  4705. Run Ediff on a pair of regions in two different buffers.
  4706. Regions (i.e., point and mark) are assumed to be set in advance.
  4707. Each region is enlarged to contain full lines.
  4708. This function is effective for large regions, over 100-200
  4709. lines. For small regions, use `ediff-regions-wordwise'." t nil)
  4710.  
  4711. (defalias 'ediff-merge 'ediff-merge-files)
  4712.  
  4713. (autoload 'ediff-merge-files "ediff" "\
  4714. Merge two files without ancestor." t nil)
  4715.  
  4716. (autoload 'ediff-merge-files-with-ancestor "ediff" "\
  4717. Merge two files with ancestor." t nil)
  4718.  
  4719. (defalias 'ediff-merge-with-ancestor 'ediff-merge-files-with-ancestor)
  4720.  
  4721. (autoload 'ediff-merge-buffers "ediff" "\
  4722. Merge buffers without ancestor." t nil)
  4723.  
  4724. (autoload 'ediff-merge-buffers-with-ancestor "ediff" "\
  4725. Merge buffers with ancestor." t nil)
  4726.  
  4727. (autoload 'ediff-merge-revisions "ediff" "\
  4728. Run Ediff by merging two revisions of a file.
  4729. The file is the optional FILE argument or the file visited by the current
  4730. buffer." t nil)
  4731.  
  4732. (autoload 'ediff-merge-revisions-with-ancestor "ediff" "\
  4733. Run Ediff by merging two revisions of a file with a common ancestor.
  4734. The file is the the optional FILE argument or the file visited by the current
  4735. buffer." t nil)
  4736.  
  4737. (autoload 'ediff-patch-buffer "ediff" "\
  4738. Run Ediff by patching BUFFER-NAME." t nil)
  4739.  
  4740. (autoload 'ediff-revision "ediff" "\
  4741. Run Ediff by comparing versions of a file.
  4742. The file is an optional FILE argument or the file visited by the current
  4743. buffer. Use `vc.el' or `rcs.el' depending on `ediff-version-control-package'." t nil)
  4744.  
  4745. ;;;***
  4746.  
  4747. ;;;### (autoloads (edit-faces) "edit-faces" "packages/edit-faces.el" (12336 45038))
  4748. ;;; Generated autoloads from packages/edit-faces.el
  4749.  
  4750. (autoload 'edit-faces "edit-faces" "\
  4751. Alter face characteristics by editing a list of defined faces.
  4752. Pops up a buffer containing a list of defined faces.
  4753.  
  4754. Editing commands:
  4755.  
  4756. \\{edit-faces-map}" t nil)
  4757.  
  4758. ;;;***
  4759.  
  4760. ;;;### (autoloads (report-emacs-bug) "emacsbug" "packages/emacsbug.el" (12147 26461))
  4761. ;;; Generated autoloads from packages/emacsbug.el
  4762.  
  4763. (autoload 'report-emacs-bug "emacsbug" "\
  4764. Report a bug in GNU Emacs.
  4765. Prompts for bug subject.  Leaves you in a mail buffer." t nil)
  4766.  
  4767. ;;;***
  4768.  
  4769. ;;;### (autoloads (emerge-merge-directories emerge-revisions-with-ancestor emerge-revisions emerge-files-with-ancestor-remote emerge-files-remote emerge-files-with-ancestor-command emerge-files-command emerge-buffers-with-ancestor emerge-buffers emerge-files-with-ancestor emerge-files) "emerge" "packages/emerge.el" (12252 62110))
  4770. ;;; Generated autoloads from packages/emerge.el
  4771.  
  4772. (autoload 'emerge-files "emerge" "\
  4773. Run Emerge on two files." t nil)
  4774.  
  4775. (fset 'emerge 'emerge-files)
  4776.  
  4777. (autoload 'emerge-files-with-ancestor "emerge" "\
  4778. Run Emerge on two files, giving another file as the ancestor." t nil)
  4779.  
  4780. (autoload 'emerge-buffers "emerge" "\
  4781. Run Emerge on two buffers." t nil)
  4782.  
  4783. (autoload 'emerge-buffers-with-ancestor "emerge" "\
  4784. Run Emerge on two buffers, giving another buffer as the ancestor." t nil)
  4785.  
  4786. (autoload 'emerge-files-command "emerge" nil nil nil)
  4787.  
  4788. (autoload 'emerge-files-with-ancestor-command "emerge" nil nil nil)
  4789.  
  4790. (autoload 'emerge-files-remote "emerge" nil nil nil)
  4791.  
  4792. (autoload 'emerge-files-with-ancestor-remote "emerge" nil nil nil)
  4793.  
  4794. (autoload 'emerge-revisions "emerge" "\
  4795. Emerge two RCS revisions of a file." t nil)
  4796.  
  4797. (autoload 'emerge-revisions-with-ancestor "emerge" "\
  4798. Emerge two RCS revisions of a file, with another revision as ancestor." t nil)
  4799.  
  4800. (autoload 'emerge-merge-directories "emerge" nil t nil)
  4801.  
  4802. ;;;***
  4803.  
  4804. ;;;### (autoloads (tags-apropos list-tags tags-query-replace tags-search tags-loop-continue next-file find-tag-other-window find-tag visit-tags-table) "etags" "packages/etags.el" (12346 23691))
  4805. ;;; Generated autoloads from packages/etags.el
  4806.  
  4807. (defvar tags-build-completion-table 'ask "\
  4808. *If this variable is nil, then tags completion is disabled.
  4809. If this variable is t, then things which prompt for tags will do so with 
  4810.  completion across all known tags.
  4811. If this variable is the symbol `ask', then you will be asked whether each
  4812.  tags table should be added to the completion list as it is read in.
  4813.  (With the exception that for very small tags tables, you will not be asked,
  4814.  since they can be parsed quickly.)")
  4815.  
  4816. (defvar tags-always-exact nil "\
  4817. *If this variable is non-nil, then tags always looks for exact matches.")
  4818.  
  4819. (defvar tag-table-alist nil "\
  4820. *A list which determines which tags files should be active for a 
  4821. given buffer.  This is not really an association list, in that all 
  4822. elements are checked.  The CAR of each element of this list is a 
  4823. pattern against which the buffer's file name is compared; if it 
  4824. matches, then the CDR of the list should be the name of the tags
  4825. table to use.  If more than one element of this list matches the
  4826. buffer's file name, then all of the associated tags tables will be
  4827. used.  Earlier ones will be searched first.
  4828.  
  4829. If the CAR of elements of this list are strings, then they are treated
  4830. as regular-expressions against which the file is compared (like the
  4831. auto-mode-alist).  If they are not strings, then they are evaluated.
  4832. If they evaluate to non-nil, then the current buffer is considered to
  4833. match.
  4834.  
  4835. If the CDR of the elements of this list are strings, then they are
  4836. assumed to name a TAGS file.  If they name a directory, then the string
  4837. \"TAGS\" is appended to them to get the file name.  If they are not 
  4838. strings, then they are evaluated, and must return an appropriate string.
  4839.  
  4840. For example:
  4841.   (setq tag-table-alist
  4842.     '((\"/usr/src/public/perl/\" . \"/usr/src/public/perl/perl-3.0/\")
  4843.      (\"\\\\.el$\" . \"/usr/local/emacs/src/\")
  4844.      (\"/jbw/gnu/\" . \"/usr15/degree/stud/jbw/gnu/\")
  4845.      (\"\" . \"/usr/local/emacs/src/\")
  4846.      ))
  4847.  
  4848. This means that anything in the /usr/src/public/perl/ directory should use
  4849. the TAGS file /usr/src/public/perl/perl-3.0/TAGS; and file ending in .el should
  4850. use the TAGS file /usr/local/emacs/src/TAGS; and anything in or below the
  4851. directory /jbw/gnu/ should use the TAGS file /usr15/degree/stud/jbw/gnu/TAGS.
  4852. A file called something like \"/usr/jbw/foo.el\" would use both the TAGS files
  4853. /usr/local/emacs/src/TAGS and /usr15/degree/stud/jbw/gnu/TAGS (in that order)
  4854. because it matches both patterns.
  4855.  
  4856. If the buffer-local variable `buffer-tag-table' is set, then it names a tags
  4857. table that is searched before all others when find-tag is executed from this
  4858. buffer.
  4859.  
  4860. If there is a file called \"TAGS\" in the same directory as the file in 
  4861. question, then that tags file will always be used as well (after the
  4862. `buffer-tag-table' but before the tables specified by this list.)
  4863.  
  4864. If the variable tags-file-name is set, then the tags file it names will apply
  4865. to all buffers (for backwards compatibility.)  It is searched first.
  4866. ")
  4867.  
  4868. (autoload 'visit-tags-table "etags" "\
  4869. Tell tags commands to use tags table file FILE first.
  4870. FILE should be the name of a file created with the `etags' program.
  4871. A directory name is ok too; it means file TAGS in that directory." t nil)
  4872.  
  4873. (autoload 'find-tag "etags" "\
  4874. *Find tag whose name contains TAGNAME.
  4875.  Selects the buffer that the tag is contained in
  4876. and puts point at its definition.
  4877.  If TAGNAME is a null string, the expression in the buffer
  4878. around or before point is used as the tag name.
  4879.  If called interactively with a numeric argument, searches for the next tag
  4880. in the tag table that matches the tagname used in the previous find-tag.
  4881.  If second arg OTHER-WINDOW is non-nil, uses another window to display
  4882. the tag.
  4883.  
  4884. This version of this function supports multiple active tags tables,
  4885. and completion.
  4886.  
  4887. Variables of note:
  4888.  
  4889.   tag-table-alist        controls which tables apply to which buffers
  4890.   tags-file-name        a default tags table
  4891.   tags-build-completion-table   controls completion behavior
  4892.   buffer-tag-table        another way of specifying a buffer-local table
  4893.   make-tags-files-invisible    whether tags tables should be very hidden
  4894.   tag-mark-stack-max        how many tags-based hops to remember" t nil)
  4895.  
  4896. (autoload 'find-tag-other-window "etags" "\
  4897. *Find tag whose name contains TAGNAME.
  4898.  Selects the buffer that the tag is contained in in another window
  4899. and puts point at its definition.
  4900.  If TAGNAME is a null string, the expression in the buffer
  4901. around or before point is used as the tag name.
  4902.  If second arg NEXT is non-nil (interactively, with prefix arg),
  4903. searches for the next tag in the tag table
  4904. that matches the tagname used in the previous find-tag.
  4905.  
  4906. This version of this function supports multiple active tags tables,
  4907. and completion.
  4908.  
  4909. Variables of note:
  4910.  
  4911.   tag-table-alist        controls which tables apply to which buffers
  4912.   tags-file-name        a default tags table
  4913.   tags-build-completion-table   controls completion behavior
  4914.   buffer-tag-table        another way of specifying a buffer-local table
  4915.   make-tags-files-invisible    whether tags tables should be very hidden
  4916.   tag-mark-stack-max        how many tags-based hops to remember" t nil)
  4917.  
  4918. (autoload 'next-file "etags" "\
  4919. Select next file among files in current tag table(s).
  4920.  
  4921. A first argument of t (prefix arg, if interactive) initializes to the
  4922. beginning of the list of files in the (first) tags table.  If the argument
  4923. is neither nil nor t, it is evalled to initialize the list of files.
  4924.  
  4925. Non-nil second argument NOVISIT means use a temporary buffer
  4926. to save time and avoid uninteresting warnings.
  4927.  
  4928. Value is nil if the file was already visited;
  4929. if the file was newly read in, the value is the filename." t nil)
  4930.  
  4931. (autoload 'tags-loop-continue "etags" "\
  4932. Continue last \\[tags-search] or \\[tags-query-replace] command.
  4933. Used noninteractively with non-nil argument to begin such a command (the
  4934. argument is passed to `next-file', which see).
  4935. Two variables control the processing we do on each file:
  4936. the value of `tags-loop-scan' is a form to be executed on each file
  4937. to see if it is interesting (it returns non-nil if so)
  4938. and `tags-loop-operate' is a form to execute to operate on an interesting file
  4939. If the latter returns non-nil, we exit; otherwise we scan the next file." t nil)
  4940.  
  4941. (autoload 'tags-search "etags" "\
  4942. Search through all files listed in tags table for match for REGEXP.
  4943. Stops when a match is found.
  4944. To continue searching for next match, use command \\[tags-loop-continue].
  4945.  
  4946. See documentation of variable `tag-table-alist'." t nil)
  4947.  
  4948. (autoload 'tags-query-replace "etags" "\
  4949. Query-replace-regexp FROM with TO through all files listed in tags table.
  4950. Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
  4951. If you exit (\\[keyboard-quit] or ESC), you can resume the query-replace
  4952. with the command \\[tags-loop-continue].
  4953.  
  4954. See documentation of variable `tag-table-alist'." t nil)
  4955.  
  4956. (autoload 'list-tags "etags" "\
  4957. Display list of tags in file FILE.
  4958. FILE should not contain a directory spec
  4959. unless it has one in the tag table." t nil)
  4960.  
  4961. (autoload 'tags-apropos "etags" "\
  4962. Display list of all tags in tag table REGEXP matches." t nil)
  4963.  
  4964. ;;;***
  4965.  
  4966. ;;;### (autoloads (turn-on-fast-lock fast-lock-mode) "fast-lock" "packages/fast-lock.el" (12346 23696))
  4967. ;;; Generated autoloads from packages/fast-lock.el
  4968.  
  4969. (defvar fast-lock-mode nil)
  4970.  
  4971. (autoload 'fast-lock-mode "fast-lock" "\
  4972. Toggle Fast Lock mode.
  4973. With arg, turn Fast Lock mode on if and only if arg is positive and the buffer
  4974. is associated with a file.  Enable it automatically in your `~/.emacs' by:
  4975.  
  4976.  (add-hook 'font-lock-mode-hook 'turn-on-fast-lock)
  4977.  
  4978. If Fast Lock mode is enabled, and the current buffer does not contain any text
  4979. properties, any associated Font Lock cache is used if its timestamp matches the
  4980. buffer's file, and its `font-lock-keywords' match those that you are using.
  4981.  
  4982. Font Lock caches may be saved:
  4983.  - When you save the file's buffer.
  4984.  - When you kill an unmodified file's buffer.
  4985.  - When you exit Emacs, for all unmodified or saved buffers.
  4986. Depending on the value of `fast-lock-save-events'.
  4987. See also the commands `fast-lock-read-cache' and `fast-lock-save-cache'.
  4988.  
  4989. Use \\[font-lock-fontify-buffer] to fontify the buffer if the cache is bad.
  4990.  
  4991. Various methods of control are provided for the Font Lock cache.  In general,
  4992. see variable `fast-lock-cache-directories' and function `fast-lock-cache-name'.
  4993. For saving, see variables `fast-lock-minimum-size', `fast-lock-save-events',
  4994. `fast-lock-save-others' and `fast-lock-save-faces'.
  4995.  
  4996. Use \\[fast-lock-submit-bug-report] to send bug reports or feedback." t nil)
  4997.  
  4998. (autoload 'turn-on-fast-lock "fast-lock" "\
  4999. Unconditionally turn on Fast Lock mode." nil nil)
  5000.  
  5001. ;;;***
  5002.  
  5003. ;;;### (autoloads (feedmail-send-it) "feedmail" "packages/feedmail.el" (12073 20624))
  5004. ;;; Generated autoloads from packages/feedmail.el
  5005.  
  5006. (autoload 'feedmail-send-it "feedmail" nil nil nil)
  5007.  
  5008. ;;;***
  5009.  
  5010. ;;;### (autoloads (make-file-part) "file-part" "packages/file-part.el" (12147 26491))
  5011. ;;; Generated autoloads from packages/file-part.el
  5012.  
  5013. (autoload 'make-file-part "file-part" "\
  5014. Make a file part on buffer BUFFER out of the region.  Call it NAME.
  5015. This command creates a new buffer containing the contents of the
  5016. region and marks the buffer as referring to the specified buffer,
  5017. called the `master buffer'.  When the file-part buffer is saved,
  5018. its changes are integrated back into the master buffer.  When the
  5019. master buffer is deleted, all file parts are deleted with it.
  5020.  
  5021. When called from a function, expects four arguments, START, END,
  5022. NAME, and BUFFER, all of which are optional and default to the
  5023. beginning of BUFFER, the end of BUFFER, a name generated from
  5024. BUFFER's name, and the current buffer, respectively." t nil)
  5025.  
  5026. ;;;***
  5027.  
  5028. ;;;### (autoloads (font-lock-fontify-buffer turn-on-font-lock font-lock-mode) "font-lock" "packages/font-lock.el" (12357 57376))
  5029. ;;; Generated autoloads from packages/font-lock.el
  5030.  
  5031. (make-variable-buffer-local 'font-lock-keywords)
  5032.  
  5033. (defvar font-lock-keywords nil "\
  5034. *The keywords to highlight.
  5035. If this is a list, then elements may be of the forms:
  5036.  
  5037.   \"string\"              ; a regexp to highlight in the 
  5038.                   ;  `font-lock-keyword-face'.
  5039.   (\"string\" . integer)        ; match N of the regexp will be highlighted
  5040.   (\"string\" . face-name)      ; use the named face
  5041.   (\"string\" integer face-name)    ; both of the above
  5042.   (\"string\" integer face-name t)  ; this allows highlighting to overlap
  5043.                   ;  with already-highlighted regions.
  5044.  
  5045. These regular expressions should not match text which spans lines.  Multi-line
  5046. patterns will be correctly fontified when \\[font-lock-fontify-buffer] is used,
  5047. but will not be matched by the auto-fontification that font-lock-mode does,
  5048. since it looks at only one line at a time.
  5049.  
  5050. Be careful composing regexps for this list; the wrong pattern can dramatically
  5051. slow things down!")
  5052.  
  5053. (defvar font-lock-auto-fontify t "\
  5054. *Whether font-lock should automatically fontify files as they're loaded.
  5055. This will only happen if font-lock has fontifying keywords for the major
  5056. mode of the file.  You can get finer-grained control over auto-fontification
  5057. by using this variable in combination with `font-lock-mode-enable-list' or
  5058. `font-lock-mode-disable-list'.")
  5059.  
  5060. (defvar font-lock-mode-enable-list nil "\
  5061. *List of modes to auto-fontify, if `font-lock-auto-fontify' is nil.")
  5062.  
  5063. (defvar font-lock-mode-disable-list nil "\
  5064. *List of modes not to auto-fontify, if `font-lock-auto-fontify' is t.")
  5065.  
  5066. (defvar font-lock-use-colors nil "\
  5067. *If true, font-lock will by default use colors to fontify text.
  5068. Set this *before* loading font-lock (e.g. in your init file).  You can
  5069. also explicitly reset the font-lock faces to these colors at any time by
  5070. calling the function `font-lock-use-default-colors'.
  5071.  
  5072. See also `font-lock-use-fonts'.  If you want more control over the faces
  5073. used for fontification, see the documentation of `font-lock-mode' for
  5074. how to do it.  In such a case, you might want to consider setting both
  5075. `font-lock-use-colors' and `font-lock-use-fonts' to nil to prevent
  5076. font-lock from initializing the faces.")
  5077.  
  5078. (defvar font-lock-use-fonts t "\
  5079. *If true, font-lock will by default use different fonts to fontify text.
  5080. Set this *before* loading font-lock (e.g. in your init file).  You can
  5081. also explicitly reset the font-lock faces to these fonts at any time by
  5082. calling the function `font-lock-use-default-fonts'.
  5083.  
  5084. See also `font-lock-use-colors'.  If you want more control over the faces
  5085. used for fontification, see the documentation of `font-lock-mode' for
  5086. how to do it.  In such a case, you might want to consider setting both
  5087. `font-lock-use-colors' and `font-lock-use-fonts' to nil to prevent
  5088. font-lock from initializing the faces.")
  5089.  
  5090. (defvar font-lock-use-maximal-decoration nil "\
  5091. *If true, font-lock will use a larger set of decorations than normal.
  5092. Set this *before* loading font-lock (e.g. in your init file).  This
  5093. typically results in keywords being fontified as well as comments
  5094. and strings and such; however, fontification will take longer.  If you
  5095. want to change this when font-lock is already loaded, use the functions
  5096. `font-lock-use-default-minimal-decoration' or
  5097. `font-lock-use-default-maximal-decoration'.")
  5098.  
  5099. (defvar font-lock-mode nil)
  5100.  
  5101. (autoload 'font-lock-mode "font-lock" "\
  5102. Toggle Font Lock Mode.
  5103. With arg, turn font-lock mode on if and only if arg is positive.
  5104. In the font-lock minor mode, text is fontified as you type it:
  5105.  
  5106.  - comments are displayed in font-lock-comment-face;
  5107.  - strings are displayed in font-lock-string-face;
  5108.  - documentation strings are displayed in font-lock-doc-string-face;
  5109.  - function and variable names in their defining forms are displayed
  5110.    in font-lock-function-name-face;
  5111.  - and certain other expressions are displayed in other faces
  5112.    according to the value of the variable `font-lock-keywords'.
  5113.  
  5114. When font-lock mode is turned on/off, the buffer is fontified/defontified.
  5115. To fontify a buffer without having newly typed text become fontified, you
  5116. can use \\[font-lock-fontify-buffer].
  5117.  
  5118. See the variable `font-lock-keywords' for customization." t nil)
  5119.  
  5120. (autoload 'turn-on-font-lock "font-lock" "\
  5121. Unconditionally turn on Font Lock mode." nil nil)
  5122.  
  5123. (autoload 'font-lock-fontify-buffer "font-lock" "\
  5124. Fontify the current buffer the way `font-lock-mode' would:
  5125.  
  5126.  - comments are displayed in font-lock-comment-face;
  5127.  - strings are displayed in font-lock-string-face;
  5128.  - documentation strings are displayed in font-lock-doc-string-face;
  5129.  - function and variable names in their defining forms are displayed
  5130.    in font-lock-function-name-face;
  5131.  - and certain other expressions are displayed in other faces
  5132.    according to the value of the variable `font-lock-keywords'.
  5133.  
  5134. This can take a while for large buffers." t nil)
  5135.  
  5136. ;;;***
  5137.  
  5138. ;;;### (autoloads (sc-mode) "generic-sc" "packages/generic-sc.el" (12147 26449))
  5139. ;;; Generated autoloads from packages/generic-sc.el
  5140.  
  5141. (autoload 'sc-mode "generic-sc" "\
  5142. Toggle sc-mode.
  5143. SYSTEM can be sccs, rcs or cvs.
  5144. Cvs requires the pcl-cvs package.
  5145.  
  5146. The following commands are available
  5147. \\[sc-next-operation]    perform next logical source control operation on current file
  5148. \\[sc-show-changes]    compare the version being edited with an older one
  5149. \\[sc-version-diff-file]    compare two older versions of a file
  5150. \\[sc-show-history]        display change history of current file
  5151. \\[sc-visit-previous-revision]    display an older revision of current file
  5152. \\[sc-revert-file]        revert buffer to last checked-in version
  5153. \\[sc-list-all-locked-files]        show all files locked in current directory
  5154. \\[sc-list-locked-files]        show all files locked by you in current directory
  5155. \\[sc-list-registered-files]        show all files under source control in current directory
  5156. \\[sc-update-directory]        get fresh copies of files checked-in by others in current directory
  5157. \\[sc-rename-file]        rename the current file and its source control file
  5158.  
  5159.  
  5160. While you are entering a change log message for a check in, sc-log-entry-mode
  5161. will be in effect.
  5162.  
  5163. Global user options:
  5164.     sc-diff-command    A list consisting of the command and flags
  5165.             to be used for generating context diffs.
  5166.     sc-mode-expert    suppresses some conformation prompts,
  5167.             notably for delta aborts and file saves.
  5168.     sc-max-log-size    specifies the maximum allowable size
  5169.             of a log message plus one.
  5170.  
  5171.  
  5172. When using SCCS you have additional commands and options
  5173.  
  5174. \\[sccs-insert-headers]        insert source control headers in current file
  5175.  
  5176. When you generate headers into a buffer using \\[sccs-insert-headers],
  5177. the value of sc-insert-headers-hook is called before insertion. If the
  5178. file is recognized a C or Lisp source, sc-insert-c-header-hook or
  5179. sc-insert-lisp-header-hook is called after insertion respectively.
  5180.  
  5181.     sccs-headers-wanted    which %-keywords to insert when adding
  5182.             headers with C-c h
  5183.     sccs-insert-static    if non-nil, keywords inserted in C files
  5184.             get stuffed in a static string area so that
  5185.             what(1) can see them in the compiled object code.
  5186.  
  5187. When using CVS you have additional commands
  5188.  
  5189. \\[sc-cvs-update-directory]    update the current directory using pcl-cvs
  5190. \\[sc-cvs-file-status]        show the CVS status of current file
  5191. " t nil)
  5192.  
  5193. ;;;***
  5194.  
  5195. ;;;### (autoloads (gnuserv-start) "gnuserv" "packages/gnuserv.el" (12252 62118))
  5196. ;;; Generated autoloads from packages/gnuserv.el
  5197.  
  5198. (autoload 'gnuserv-start "gnuserv" "\
  5199. Allow this Emacs process to be a server for client processes.
  5200. This starts a server communications subprocess through which
  5201. client \"editors\" (gnuclient and gnudoit) can send editing commands to 
  5202. this Emacs job. See the gnuserv(1) manual page for more details.
  5203.  
  5204. Prefix arg means just kill any existing server communications subprocess." t nil)
  5205.  
  5206. ;;;***
  5207.  
  5208. ;;;### (autoloads (gopher-atpoint gopher) "gopher" "packages/gopher.el" (12073 20627))
  5209. ;;; Generated autoloads from packages/gopher.el
  5210.  
  5211. (autoload 'gopher "gopher" "\
  5212. Start a gopher session.  With C-u, prompt for a gopher server." t nil)
  5213.  
  5214. (autoload 'gopher-atpoint "gopher" "\
  5215. Try to interpret the text around point as a gopher bookmark, and dispatch
  5216. to that object." t nil)
  5217.  
  5218. ;;;***
  5219.  
  5220. ;;;### (autoloads (hexl-find-file hexl-mode) "hexl" "packages/hexl.el" (12147 26464))
  5221. ;;; Generated autoloads from packages/hexl.el
  5222.  
  5223. (autoload 'hexl-mode "hexl" "\
  5224. \\<hexl-mode-map>
  5225. A major mode for editing binary files in hex dump format.
  5226.  
  5227. This function automatically converts a buffer into the hexl format
  5228. using the function `hexlify-buffer'.
  5229.  
  5230. Each line in the buffer has an \"address\" (displayed in hexadecimal)
  5231. representing the offset into the file that the characters on this line
  5232. are at and 16 characters from the file (displayed as hexadecimal
  5233. values grouped every 16 bits) and as their ASCII values.
  5234.  
  5235. If any of the characters (displayed as ASCII characters) are
  5236. unprintable (control or meta characters) they will be replaced as
  5237. periods.
  5238.  
  5239. If `hexl-mode' is invoked with an argument the buffer is assumed to be
  5240. in hexl format.
  5241.  
  5242. A sample format:
  5243.  
  5244.   HEX ADDR: 0001 0203 0405 0607 0809 0a0b 0c0d 0e0f     ASCII-TEXT
  5245.   --------  ---- ---- ---- ---- ---- ---- ---- ----  ----------------
  5246.   00000000: 5468 6973 2069 7320 6865 786c 2d6d 6f64  This is hexl-mod
  5247.   00000010: 652e 2020 4561 6368 206c 696e 6520 7265  e.  Each line re
  5248.   00000020: 7072 6573 656e 7473 2031 3620 6279 7465  presents 16 byte
  5249.   00000030: 7320 6173 2068 6578 6164 6563 696d 616c  s as hexadecimal
  5250.   00000040: 2041 5343 4949 0a61 6e64 2070 7269 6e74   ASCII.and print
  5251.   00000050: 6162 6c65 2041 5343 4949 2063 6861 7261  able ASCII chara
  5252.   00000060: 6374 6572 732e 2020 416e 7920 636f 6e74  cters.  Any cont
  5253.   00000070: 726f 6c20 6f72 206e 6f6e 2d41 5343 4949  rol or non-ASCII
  5254.   00000080: 2063 6861 7261 6374 6572 730a 6172 6520   characters.are 
  5255.   00000090: 6469 7370 6c61 7965 6420 6173 2070 6572  displayed as per
  5256.   000000a0: 696f 6473 2069 6e20 7468 6520 7072 696e  iods in the prin
  5257.   000000b0: 7461 626c 6520 6368 6172 6163 7465 7220  table character 
  5258.   000000c0: 7265 6769 6f6e 2e0a                      region..
  5259.  
  5260. Movement is as simple as movement in a normal emacs text buffer.  Most
  5261. cursor movement bindings are the same (ie. Use \\[hexl-backward-char], \\[hexl-forward-char], \\[hexl-next-line], and \\[hexl-previous-line]
  5262. to move the cursor left, right, down, and up).
  5263.  
  5264. Advanced cursor movement commands (ala \\[hexl-beginning-of-line], \\[hexl-end-of-line], \\[hexl-beginning-of-buffer], and \\[hexl-end-of-buffer]) are
  5265. also supported.
  5266.  
  5267. There are several ways to change text in hexl mode:
  5268.  
  5269. ASCII characters (character between space (0x20) and tilde (0x7E)) are
  5270. bound to self-insert so you can simply type the character and it will
  5271. insert itself (actually overstrike) into the buffer.
  5272.  
  5273. \\[hexl-quoted-insert] followed by another keystroke allows you to insert the key even if
  5274. it isn't bound to self-insert.  An octal number can be supplied in place
  5275. of another key to insert the octal number's ASCII representation.
  5276.  
  5277. \\[hexl-insert-hex-char] will insert a given hexadecimal value (if it is between 0 and 0xFF)
  5278. into the buffer at the current point.
  5279.  
  5280. \\[hexl-insert-octal-char] will insert a given octal value (if it is between 0 and 0377)
  5281. into the buffer at the current point.
  5282.  
  5283. \\[hexl-insert-decimal-char] will insert a given decimal value (if it is between 0 and 255)
  5284. into the buffer at the current point.
  5285.  
  5286. \\[hexl-mode-exit] will exit hexl-mode.
  5287.  
  5288. Note: saving the file with any of the usual Emacs commands
  5289. will actually convert it back to binary format while saving.
  5290.  
  5291. You can use \\[hexl-find-file] to visit a file in hexl-mode.
  5292.  
  5293. \\[describe-bindings] for advanced commands." t nil)
  5294.  
  5295. (autoload 'hexl-find-file "hexl" "\
  5296. Edit file FILENAME in hexl-mode.
  5297. Switch to a buffer visiting file FILENAME, creating one in none exists." t nil)
  5298.  
  5299. ;;;***
  5300.  
  5301. ;;;### (autoloads (hypropos-popup-menu hypropos-set-variable hyper-describe-function hyper-describe-variable hyper-apropos) "hyper-apropos" "packages/hyper-apropos.el" (12308 10101))
  5302. ;;; Generated autoloads from packages/hyper-apropos.el
  5303.  
  5304. (defvar hypropos-show-brief-docs t "\
  5305. *If non-nil, `hyper-apropos' will display some documentation in the
  5306. \"*Hyper Apropos*\" buffer.  Setting this to nil will speed up searches.")
  5307.  
  5308. (autoload 'hyper-apropos "hyper-apropos" "\
  5309. Display lists of functions and variables matching REGEXP
  5310. in buffer \"*Hyper Apropos*\".  If optional prefix arg is given, then the value
  5311. of `hypropos-programming-apropos' is toggled for this search.
  5312. See also `hyper-apropos-mode'." t nil)
  5313.  
  5314. (autoload 'hyper-describe-variable "hyper-apropos" "\
  5315. Hypertext drop-in replacement for `describe-variable'.
  5316. See also `hyper-apropos' and `hyper-describe-function'." t nil)
  5317.  
  5318. (autoload 'hyper-describe-function "hyper-apropos" "\
  5319. Hypertext replacement for `describe-function'.  Unlike `describe-function'
  5320. in that the symbol under the cursor is the default if it is a function.
  5321. See also `hyper-apropos' and `hyper-describe-variable'." t nil)
  5322.  
  5323. (autoload 'hypropos-set-variable "hyper-apropos" "\
  5324. Interactively set the variable on the current line." t nil)
  5325.  
  5326. (autoload 'hypropos-popup-menu "hyper-apropos" nil t nil)
  5327.  
  5328. ;;;***
  5329.  
  5330. ;;;### (autoloads (Info-elisp-ref Info-emacs-key Info-goto-emacs-key-command-node Info-goto-emacs-command-node Info-emacs-command Info-query info) "info" "packages/info.el" (12358 1281))
  5331. ;;; Generated autoloads from packages/info.el
  5332.  
  5333. (autoload 'info "info" "\
  5334. Enter Info, the documentation browser.
  5335. Optional argument FILE specifies the file to examine;
  5336. the default is the top-level directory of Info.
  5337.  
  5338. In interactive use, a prefix argument directs this command
  5339. to read a file name from the minibuffer." t nil)
  5340.  
  5341. (autoload 'Info-query "info" "\
  5342. Enter Info, the documentation browser.  Prompt for name of Info file." t nil)
  5343.  
  5344. (autoload 'Info-emacs-command "info" "\
  5345. Look up an Emacs command in the Emacs manual in the Info system.
  5346. This command is designed to be used whether you are already in Info or not." t nil)
  5347.  
  5348. (autoload 'Info-goto-emacs-command-node "info" "\
  5349. Look up an Emacs command in the Emacs manual in the Info system.
  5350. This command is designed to be used whether you are already in Info or not." t nil)
  5351.  
  5352. (autoload 'Info-goto-emacs-key-command-node "info" "\
  5353. Look up an Emacs key sequence in the Emacs manual in the Info system.
  5354. This command is designed to be used whether you are already in Info or not." t nil)
  5355.  
  5356. (autoload 'Info-emacs-key "info" "\
  5357. Look up an Emacs key sequence in the Emacs manual in the Info system.
  5358. This command is designed to be used whether you are already in Info or not." t nil)
  5359.  
  5360. (autoload 'Info-elisp-ref "info" "\
  5361. Look up an Emacs Lisp function in the Elisp manual in the Info system.
  5362. This command is designed to be used whether you are already in Info or not." t nil)
  5363.  
  5364. ;;;***
  5365.  
  5366. ;;;### (autoloads (batch-info-validate Info-validate Info-split Info-tagify) "informat" "packages/informat.el" (12285 55372))
  5367. ;;; Generated autoloads from packages/informat.el
  5368.  
  5369. (autoload 'Info-tagify "informat" "\
  5370. Create or update Info-file tag table in current buffer." t nil)
  5371.  
  5372. (autoload 'Info-split "informat" "\
  5373. Split an info file into an indirect file plus bounded-size subfiles.
  5374. Each subfile will be up to 50,000 characters plus one node.
  5375.  
  5376. To use this command, first visit a large Info file that has a tag
  5377. table.  The buffer is modified into a (small) indirect info file which
  5378. should be saved in place of the original visited file.
  5379.  
  5380. The subfiles are written in the same directory the original file is
  5381. in, with names generated by appending `-' and a number to the original
  5382. file name.  The indirect file still functions as an Info file, but it
  5383. contains just the tag table and a directory of subfiles." t nil)
  5384.  
  5385. (autoload 'Info-validate "informat" "\
  5386. Check current buffer for validity as an Info file.
  5387. Check that every node pointer points to an existing node." t nil)
  5388.  
  5389. (autoload 'batch-info-validate "informat" "\
  5390. Runs `Info-validate' on the files remaining on the command line.
  5391. Must be used only with -batch, and kills Emacs on completion.
  5392. Each file will be processed even if an error occurred previously.
  5393. For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\"" nil nil)
  5394.  
  5395. ;;;***
  5396.  
  5397. ;;;### (autoloads (ispell-message ispell-minor-mode ispell-complete-word-interior-frag ispell-complete-word ispell-continue ispell-buffer ispell-region ispell-change-dictionary ispell-kill-ispell ispell-help ispell-word) "ispell" "packages/ispell.el" (12331 54411))
  5398. ;;; Generated autoloads from packages/ispell.el
  5399.  
  5400. (defvar ispell-personal-dictionary nil "\
  5401. *File name of your personal spelling dictionary, or nil.
  5402. If nil, the default personal dictionary, \"~/.ispell_DICTNAME\" is used,
  5403. where DICTNAME is the name of your default dictionary.")
  5404.  
  5405. (defvar ispell-dictionary-alist-1 '((nil "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil) ("english" "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil) ("british" "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B" "-d" "british") nil) ("deutsch" "[a-zA-Z\"]" "[^a-zA-Z\"]" "[']" t ("-C") "~tex") ("deutsch8" "[a-zA-Z─╓▄Σ÷▀ⁿ]" "[^a-zA-Z─╓▄Σ÷▀ⁿ]" "[']" t ("-C" "-d" "deutsch") "~latin1") ("nederlands" "[A-Za-z└-┼╟╚-╧╥-╓┘-▄α-στΦ-∩±≥-÷∙-ⁿ]" "[^A-Za-z└-┼╟╚-╧╥-╓┘-▄α-στΦ-∩±≥-÷∙-ⁿ]" "[']" t ("-C") nil) ("nederlands8" "[A-Za-z└-┼╟╚-╧╥-╓┘-▄α-στΦ-∩±≥-÷∙-ⁿ]" "[^A-Za-z└-┼╟╚-╧╥-╓┘-▄α-στΦ-∩±≥-÷∙-ⁿ]" "[']" t ("-C") nil)))
  5406.  
  5407. (defvar ispell-dictionary-alist-2 '(("svenska" "[A-Za-z}{|\\133\\135\\\\]" "[^A-Za-z}{|\\133\\135\\\\]" "[']" nil ("-C") nil) ("svenska8" "[A-Za-zσΣ÷┼─÷]" "[^A-Za-zσΣ÷┼─÷]" "[']" nil ("-C" "-d" "svenska") "~list") ("francais7" "[A-Za-z]" "[^A-Za-z]" "[`'^---]" t nil nil) ("francais" "[A-Za-z└┬╞╟╚╔╩╦╬╧╘┘█▄αΓτΦΘΩδε∩⌠∙√ⁿ]" "[^A-Za-z└┬╞╟╚╔╩╦╬╧╘┘█▄αΓτΦΘΩδε∩⌠∙√ⁿ]" "[---']" t nil "~list") ("francais-tex" "[A-Za-z└┬╞╟╚╔╩╦╬╧╘┘█▄αΓτΦΘΩδε∩⌠∙√ⁿ\\]" "[^A-Za-z└┬╞╟╚╔╩╦╬╧╘┘█▄αΓτΦΘΩδε∩⌠∙√ⁿ\\]" "[---'^`\"]" t nil "~tex") ("dansk" "[A-Z╞╪┼a-zµ°σ]" "[^A-Z╞╪┼a-zµ°σ]" "" nil ("-C") nil)))
  5408.  
  5409. (defvar ispell-dictionary-alist (append ispell-dictionary-alist-1 ispell-dictionary-alist-2) "\
  5410. An alist of dictionaries and their associated parameters.
  5411.  
  5412. Each element of this list is also a list:
  5413.  
  5414. \(DICTIONARY-NAME CASECHARS NOT-CASECHARS OTHERCHARS MANY-OTHERCHARS-P
  5415.         ISPELL-ARGS EXTENDED-CHARACTER-MODE)
  5416.  
  5417. DICTIONARY-NAME is a possible value of variable `ispell-dictionary', nil
  5418. means the default dictionary.
  5419.  
  5420. CASECHARS is a regular expression of valid characters that comprise a
  5421. word.
  5422.  
  5423. NOT-CASECHARS is the opposite regexp of CASECHARS.
  5424.  
  5425. OTHERCHARS is a regular expression of other characters that are valid
  5426. in word constructs.  Otherchars cannot be adjacent to each other in a
  5427. word, nor can they begin or end a word.  This implies we can't check
  5428. \"Stevens'\" as a correct possessive and other correct formations.
  5429.  
  5430. Hint: regexp syntax requires the hyphen to be declared first here.
  5431.  
  5432. MANY-OTHERCHARS-P is non-nil if many otherchars are to be allowed in a
  5433. word instead of only one.
  5434.  
  5435. ISPELL-ARGS is a list of additional arguments passed to the ispell
  5436. subprocess.
  5437.  
  5438. EXTENDED-CHARACTER-MODE should be used when dictionaries are used which
  5439. have been configured in an Ispell affix file.  (For example, umlauts
  5440. can be encoded as \\\"a, a\\\", \"a, ...)  Defaults are ~tex and ~nroff
  5441. in English.  This has the same effect as the command-line `-T' option.
  5442. The buffer Major Mode controls Ispell's parsing in tex or nroff mode,
  5443. but the dictionary can control the extended character mode.
  5444. Both defaults can be overruled in a buffer-local fashion. See
  5445. `ispell-parsing-keyword' for details on this.
  5446.  
  5447. Note that the CASECHARS and OTHERCHARS slots of the alist should
  5448. contain the same character set as casechars and otherchars in the
  5449. language.aff file (e.g., english.aff).")
  5450.  
  5451. (defvar ispell-menu-map nil "\
  5452. Key map for ispell menu")
  5453.  
  5454. (defvar ispell-menu-lucid nil "\
  5455. Spelling menu for Lucid Emacs.")
  5456.  
  5457. (defconst ispell-menu-map-needed (and (not ispell-menu-map) (featurep 'menu-bar) (string-lessp "19" emacs-version)))
  5458.  
  5459. (if ispell-menu-map-needed (let ((dicts (reverse (cons (cons "default" nil) ispell-dictionary-alist))) name) (setq ispell-menu-map (make-sparse-keymap "Spell")) (while dicts (setq name (car (car dicts)) dicts (cdr dicts)) (if (stringp name) (define-key ispell-menu-map (vector (intern name)) (cons (concat "Select " (capitalize name)) (list 'lambda nil '(interactive) (list 'ispell-change-dictionary name))))))))
  5460.  
  5461. (if ispell-menu-map-needed (progn (define-key ispell-menu-map [ispell-change-dictionary] '("Change Dictionary" . ispell-change-dictionary)) (define-key ispell-menu-map [ispell-kill-ispell] '("Kill Process" . ispell-kill-ispell)) (define-key ispell-menu-map [ispell-pdict-save] '("Save Dictionary" lambda nil (interactive) (ispell-pdict-save t t))) (define-key ispell-menu-map [ispell-complete-word] '("Complete Word" . ispell-complete-word)) (define-key ispell-menu-map [ispell-complete-word-interior-frag] '("Complete Word Frag" . ispell-complete-word-interior-frag))))
  5462.  
  5463. (if ispell-menu-map-needed (progn (define-key ispell-menu-map [ispell-continue] '("Continue Check" . ispell-continue)) (define-key ispell-menu-map [ispell-word] '("Check Word" . ispell-word)) (define-key ispell-menu-map [ispell-region] '("Check Region" . ispell-region)) (define-key ispell-menu-map [ispell-buffer] '("Check Buffer" . ispell-buffer))))
  5464.  
  5465. (if ispell-menu-map-needed (progn (define-key ispell-menu-map [ispell-message] '("Check Message" . ispell-message)) (define-key ispell-menu-map [ispell-help] '("Help" lambda nil (interactive) (describe-function 'ispell-help))) (put 'ispell-region 'menu-enable 'mark-active) (fset 'ispell-menu-map (symbol-value 'ispell-menu-map))))
  5466.  
  5467. (defvar ispell-local-pdict ispell-personal-dictionary "\
  5468. A buffer local variable containing the current personal dictionary.
  5469. If non-nil, the value must be a string, which is a file name.
  5470.  
  5471. If you specify a personal dictionary for the current buffer which is
  5472. different from the current personal dictionary, the effect is similar
  5473. to calling \\[ispell-change-dictionary].  This variable is automatically
  5474. set when defined in the file with either `ispell-pdict-keyword' or the
  5475. local variable syntax.")
  5476.  
  5477. (define-key global-map "\M-$" 'ispell-word)
  5478.  
  5479. (autoload 'ispell-word "ispell" "\
  5480. Check spelling of word under or before the cursor.
  5481. If the word is not found in dictionary, display possible corrections
  5482. in a window allowing you to choose one.
  5483.  
  5484. With a prefix argument (or if CONTINUE is non-nil),
  5485. resume interrupted spell-checking of a buffer or region.
  5486.  
  5487. If optional argument FOLLOWING is non-nil or if `ispell-following-word'
  5488. is non-nil when called interactively, then the following word
  5489. \(rather than preceding) is checked when the cursor is not over a word.
  5490. When the optional argument QUIETLY is non-nil or `ispell-quietly' is non-nil
  5491. when called interactively, non-corrective messages are suppressed.
  5492.  
  5493. Word syntax described by `ispell-dictionary-alist' (which see).
  5494.  
  5495. This will check or reload the dictionary.  Use \\[ispell-change-dictionary]
  5496. or \\[ispell-region] to update the Ispell process." t nil)
  5497.  
  5498. (autoload 'ispell-help "ispell" "\
  5499. Display a list of the options available when a misspelling is encountered.
  5500.  
  5501. Selections are:
  5502.  
  5503. DIGIT: Replace the word with a digit offered in the *Choices* buffer.
  5504. SPC:   Accept word this time.
  5505. `i':   Accept word and insert into private dictionary.
  5506. `a':   Accept word for this session.
  5507. `A':   Accept word and place in `buffer-local dictionary'.
  5508. `r':   Replace word with typed-in value.  Rechecked.
  5509. `R':   Replace word with typed-in value. Query-replaced in buffer. Rechecked.
  5510. `?':   Show these commands.
  5511. `x':   Exit spelling buffer.  Move cursor to original point.
  5512. `X':   Exit spelling buffer.  Leaves cursor at the current point, and permits
  5513.         the aborted check to be completed later.
  5514. `q':   Quit spelling session (Kills ispell process).
  5515. `l':   Look up typed-in replacement in alternate dictionary.  Wildcards okay.
  5516. `u':   Like `i', but the word is lower-cased first.
  5517. `m':   Like `i', but allows one to include dictionary completion information.
  5518. `C-l':  redraws screen
  5519. `C-r':  recursive edit
  5520. `C-z':  suspend emacs or iconify frame" nil nil)
  5521.  
  5522. (autoload 'ispell-kill-ispell "ispell" "\
  5523. Kill current Ispell process (so that you may start a fresh one).
  5524. With NO-ERROR, just return non-nil if there was no Ispell running." t nil)
  5525.  
  5526. (autoload 'ispell-change-dictionary "ispell" "\
  5527. Change `ispell-dictionary' (q.v.) and kill old Ispell process.
  5528. A new one will be started as soon as necessary.
  5529.  
  5530. By just answering RET you can find out what the current dictionary is.
  5531.  
  5532. With prefix argument, set the default directory." t nil)
  5533.  
  5534. (autoload 'ispell-region "ispell" "\
  5535. Interactively check a region for spelling errors." t nil)
  5536.  
  5537. (autoload 'ispell-buffer "ispell" "\
  5538. Check the current buffer for spelling errors interactively." t nil)
  5539.  
  5540. (autoload 'ispell-continue "ispell" nil t nil)
  5541.  
  5542. (autoload 'ispell-complete-word "ispell" "\
  5543. Look up word before or under point in dictionary (see lookup-words command)
  5544. and try to complete it.  If optional INTERIOR-FRAG is non-nil then the word
  5545. may be a character sequence inside of a word.
  5546.  
  5547. Standard ispell choices are then available." t nil)
  5548.  
  5549. (autoload 'ispell-complete-word-interior-frag "ispell" "\
  5550. Completes word matching character sequence inside a word." t nil)
  5551.  
  5552. (autoload 'ispell-minor-mode "ispell" "\
  5553. Toggle Ispell minor mode.
  5554. With prefix arg, turn Ispell minor mode on iff arg is positive.
  5555.  
  5556. In Ispell minor mode, pressing SPC or RET
  5557. warns you if the previous word is incorrectly spelled." t nil)
  5558.  
  5559. (autoload 'ispell-message "ispell" "\
  5560. Check the spelling of a mail message or news post.
  5561. Don't check spelling of message headers except the Subject field.
  5562. Don't check included messages.
  5563.  
  5564. To abort spell checking of a message REGION and send the message anyway,
  5565. use the `x' or `q' command.  (Any subsequent regions will be checked.)
  5566. The `X' command aborts the message send so that you can edit the buffer.
  5567.  
  5568. To spell-check whenever a message is sent, include the appropriate lines
  5569. in your .emacs file:
  5570.    (add-hook 'news-inews-hook 'ispell-message)
  5571.    (add-hook 'mail-send-hook  'ispell-message)
  5572.    (add-hook 'mh-before-send-letter-hook 'ispell-message)
  5573.  
  5574. You can bind this to the key C-c i in GNUS or mail by adding to
  5575. `news-reply-mode-hook' or `mail-mode-hook' the following lambda expression:
  5576.    (function (lambda () (local-set-key \"\\C-ci\" 'ispell-message)))" t nil)
  5577.  
  5578. ;;;***
  5579.  
  5580. ;;;### (autoloads (jka-compr-install toggle-auto-compression jka-compr-load) "jka-compr" "packages/jka-compr.el" (12256 52570))
  5581. ;;; Generated autoloads from packages/jka-compr.el
  5582.  
  5583. (autoload 'jka-compr-load "jka-compr" "\
  5584. Documented as original." nil nil)
  5585.  
  5586. (autoload 'toggle-auto-compression "jka-compr" "\
  5587. Toggle automatic file compression and decompression.
  5588. With prefix argument ARG, turn auto compression on if positive, else off.
  5589. Returns the new status of auto compression (non-nil means on)." t nil)
  5590.  
  5591. (autoload 'jka-compr-install "jka-compr" "\
  5592. Install jka-compr.
  5593. This adds entries to `file-name-handler-alist' and `auto-mode-alist'
  5594. and `inhibit-first-line-modes-suffixes'." nil nil)
  5595.  
  5596. ;;;***
  5597.  
  5598. ;;;### (autoloads (turn-on-lazy-lock lazy-lock-mode) "lazy-lock" "packages/lazy-lock.el" (12356 62988))
  5599. ;;; Generated autoloads from packages/lazy-lock.el
  5600.  
  5601. (autoload 'lazy-lock-mode "lazy-lock" "\
  5602. Toggle Lazy Lock mode.
  5603. With arg, turn Lazy Lock mode on if and only if arg is positive and the buffer
  5604. is at least `lazy-lock-minimum-size' characters long.
  5605.  
  5606. When Lazy Lock mode is enabled, fontification is demand-driven and stealthy:
  5607.  
  5608.  - Fontification occurs in visible parts of buffers when necessary.
  5609.    Occurs if there is no input after pausing for `lazy-lock-continuity-time'.
  5610.  
  5611.  - Fontification occurs in invisible parts when Emacs has been idle.
  5612.    Occurs if there is no input after pausing for `lazy-lock-stealth-time'.
  5613.  
  5614. If `lazy-lock-hide-invisible' is non-nil, text is not displayed until it is
  5615. fontified, otherwise it is displayed in `lazy-lock-invisible-foreground'.
  5616.  
  5617. See also variables `lazy-lock-walk-windows', `lazy-lock-stealth-lines',
  5618. `lazy-lock-stealth-nice' and `lazy-lock-ignore-commands'.
  5619.  
  5620. Use \\[lazy-lock-submit-bug-report] to send bug reports or feedback." t nil)
  5621.  
  5622. (autoload 'turn-on-lazy-lock "lazy-lock" "\
  5623. Unconditionally turn on Lazy Lock mode." nil nil)
  5624.  
  5625. ;;;***
  5626.  
  5627. ;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "packages/ledit.el" (12147 26468))
  5628. ;;; Generated autoloads from packages/ledit.el
  5629.  
  5630. (defconst ledit-save-files t "\
  5631. *Non-nil means Ledit should save files before transferring to Lisp.")
  5632.  
  5633. (defconst ledit-go-to-lisp-string "%?lisp" "\
  5634. *Shell commands to execute to resume Lisp job.")
  5635.  
  5636. (defconst ledit-go-to-liszt-string "%?liszt" "\
  5637. *Shell commands to execute to resume Lisp compiler job.")
  5638.  
  5639. (autoload 'ledit-mode "ledit" "\
  5640. \\<ledit-mode-map>Major mode for editing text and stuffing it to a Lisp job.
  5641. Like Lisp mode, plus these special commands:
  5642.   \\[ledit-save-defun]    -- record defun at or after point
  5643.        for later transmission to Lisp job.
  5644.   \\[ledit-save-region] -- record region for later transmission to Lisp job.
  5645.   \\[ledit-go-to-lisp] -- transfer to Lisp job and transmit saved text.
  5646.   \\[ledit-go-to-liszt] -- transfer to Liszt (Lisp compiler) job
  5647.        and transmit saved text.
  5648. \\{ledit-mode-map}
  5649. To make Lisp mode automatically change to Ledit mode,
  5650. do (setq lisp-mode-hook 'ledit-from-lisp-mode)" t nil)
  5651.  
  5652. (autoload 'ledit-from-lisp-mode "ledit" nil nil nil)
  5653.  
  5654. ;;;***
  5655.  
  5656. ;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer) "lpr" "packages/lpr.el" (12147 26470))
  5657. ;;; Generated autoloads from packages/lpr.el
  5658.  
  5659. (defvar lpr-switches nil "\
  5660. *List of strings to pass as extra switch args to lpr when it is invoked.")
  5661.  
  5662. (defvar lpr-command (if (memq system-type '(usg-unix-v dgux-unix hpux silicon-graphics-unix)) "lp" "lpr") "\
  5663. *Shell command for printing a file")
  5664.  
  5665. (autoload 'lpr-buffer "lpr" "\
  5666. Print buffer contents as with Unix command `lpr'.
  5667. `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
  5668.  
  5669. (autoload 'print-buffer "lpr" "\
  5670. Print buffer contents as with Unix command `lpr -p'.
  5671. `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
  5672.  
  5673. (autoload 'lpr-region "lpr" "\
  5674. Print region contents as with Unix command `lpr'.
  5675. `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
  5676.  
  5677. (autoload 'print-region "lpr" "\
  5678. Print region contents as with Unix command `lpr -p'.
  5679. `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
  5680.  
  5681. ;;;***
  5682.  
  5683. ;;;### (autoloads (mc-mh-snarf-keys mc-mh-verify-signature mc-mh-decrypt-message mc-gnus-summary-decrypt-message mc-gnus-summary-snarf-keys mc-gnus-summary-verify-signature mc-vm-decrypt-message mc-vm-verify-signature mc-rmail-decrypt-message mc-rmail-verify-signature mc-snarf-keys mc-insert-public-key mc-verify-signature mc-sign-message mc-decrypt-message mc-encrypt-message mc-deactivate-passwd mc-install-read-mode mc-install-write-mode) "mailcrypt" "packages/mailcrypt.el" (12252 62116))
  5684. ;;; Generated autoloads from packages/mailcrypt.el
  5685.  
  5686. (autoload 'mc-install-write-mode "mailcrypt" nil nil nil)
  5687.  
  5688. (autoload 'mc-install-read-mode "mailcrypt" nil nil nil)
  5689.  
  5690. (autoload 'mc-deactivate-passwd "mailcrypt" "\
  5691. *Deactivates the passphrase." t nil)
  5692.  
  5693. (autoload 'mc-encrypt-message "mailcrypt" "\
  5694. *Encrypt the message to RECIPIENTS using the given encryption SCHEME.
  5695. RECIPIENTS is a comma separated string. If SCHEME is nil, use the value
  5696. of `mc-default-scheme'. Returns t on success, nil otherwise.
  5697.  
  5698. By default, this function is bound to `C-c e' in mail composing modes." t nil)
  5699.  
  5700. (autoload 'mc-decrypt-message "mailcrypt" "\
  5701. *Decrypt whatever message is in the current buffer.
  5702. Returns a pair (SUCCEEDED . VERIFIED) where SUCCEEDED is t if the encryption
  5703. succeeded and VERIFIED is t if it had a valid signature.
  5704.  
  5705. By default, this function is bound to `C-c d' in reading modes." t nil)
  5706.  
  5707. (autoload 'mc-sign-message "mailcrypt" "\
  5708. *Clear sign the message.
  5709. With one prefix arg, prompts for private key to use, with two prefix args,
  5710. also prompts for encryption scheme to use.
  5711.  
  5712. By default, this function is bound to `C-c s' in composition modes." t nil)
  5713.  
  5714. (autoload 'mc-verify-signature "mailcrypt" "\
  5715. *Verify the signature of the signed message in the current buffer.
  5716. Show the result as a message in the minibuffer. Returns t if the signature
  5717. is verified.
  5718.  
  5719. By default, this function is bound to `C-c v' in reading modes." t nil)
  5720.  
  5721. (autoload 'mc-insert-public-key "mailcrypt" "\
  5722. *Insert your public key at the end of the current buffer.
  5723. With one prefix arg, prompts for user id to use. With two prefix
  5724. args, prompts for encryption scheme." t nil)
  5725.  
  5726. (autoload 'mc-snarf-keys "mailcrypt" "\
  5727. *Add the first public key in the buffer to your keyring.
  5728. TODO: add ALL the keys in the buffer." t nil)
  5729.  
  5730. (autoload 'mc-rmail-verify-signature "mailcrypt" "\
  5731. *Verify the signature in the current message." t nil)
  5732.  
  5733. (autoload 'mc-rmail-decrypt-message "mailcrypt" "\
  5734. *Decrypt the contents of this message" t nil)
  5735.  
  5736. (autoload 'mc-vm-verify-signature "mailcrypt" "\
  5737. *Verify the signature in the current VM message" t nil)
  5738.  
  5739. (autoload 'mc-vm-decrypt-message "mailcrypt" "\
  5740. *Decrypt the contents of the current VM message" t nil)
  5741.  
  5742. (autoload 'mc-gnus-summary-verify-signature "mailcrypt" nil t nil)
  5743.  
  5744. (autoload 'mc-gnus-summary-snarf-keys "mailcrypt" nil t nil)
  5745.  
  5746. (autoload 'mc-gnus-summary-decrypt-message "mailcrypt" nil t nil)
  5747.  
  5748. (autoload 'mc-mh-decrypt-message "mailcrypt" "\
  5749. *Decrypt the contents of the current MH message in the show buffer.
  5750. With prefix arg, decrypt the message on disk as well." t nil)
  5751.  
  5752. (autoload 'mc-mh-verify-signature "mailcrypt" "\
  5753. *Verify the signature in the current MH message." t nil)
  5754.  
  5755. (autoload 'mc-mh-snarf-keys "mailcrypt" nil t nil)
  5756.  
  5757. ;;;***
  5758.  
  5759. ;;;### (autoloads (make-command-summary) "makesum" "packages/makesum.el" (12147 26454))
  5760. ;;; Generated autoloads from packages/makesum.el
  5761.  
  5762. (autoload 'make-command-summary "makesum" "\
  5763. Make a summary of current key bindings in the buffer *Summary*.
  5764. Previous contents of that buffer are killed first." t nil)
  5765.  
  5766. ;;;***
  5767.  
  5768. ;;;### (autoloads (manual-entry) "man" "packages/man.el" (12354 14355))
  5769. ;;; Generated autoloads from packages/man.el
  5770.  
  5771. (autoload 'manual-entry "man" "\
  5772. Display the Unix manual entry (or entries) for TOPIC.
  5773. If prefix arg is given, modify the search according to the value:
  5774.   2 = complement default exact matching of the TOPIC name;
  5775.       exact matching default is specified by `Manual-match-topic-exactly'
  5776.   3 = force a search of the unformatted man directories
  5777.   4 = both 2 and 3
  5778. The manual entries are searched according to the variable
  5779. Manual-directory-list, which should be a list of directories.  If
  5780. Manual-directory-list is nil, \\[Manual-directory-list-init] is
  5781. invoked to create this list from the MANPATH environment variable.
  5782. See the variable Manual-topic-buffer which controls how the buffer
  5783. is named.  See also the variables Manual-match-topic-exactly,
  5784. Manual-query-multiple-pages, and Manual-buffer-view-mode." t nil)
  5785.  
  5786. ;;;***
  5787.  
  5788. ;;;### (autoloads (blink-paren paren-set-mode) "paren" "packages/paren.el" (12346 23704))
  5789. ;;; Generated autoloads from packages/paren.el
  5790.  
  5791. (defvar paren-mode nil "\
  5792. *Sets the style of parenthesis highlighting.
  5793. Valid values are `blink-paren', `paren', and `sexp'.
  5794.   blink-paren    causes the matching paren to blink.
  5795.   paren        causes the matching paren to be highlighted but not to blink.
  5796.   sexp        whole expression enclosed by the local paren at its mate.
  5797.   nested    (not released yet) use variable shading to see the
  5798.         nesting of an expression.  Also groks regular expressions
  5799.         and shell quoting.
  5800.  
  5801. This variable is global by default, but you can make it buffer-local and
  5802. highlight parentheses differrently in different major modes.")
  5803.  
  5804. (autoload 'paren-set-mode "paren" "\
  5805. Cycles through possible values for `paren-mode', force off with negative arg.
  5806. When called from lisp, a symbolic value for `paren-mode' can be pased directly.
  5807. See also `paren-mode' and `paren-highlight'." t nil)
  5808.  
  5809. (make-obsolete 'blink-paren 'paren-set-mode)
  5810.  
  5811. (autoload 'blink-paren "paren" "\
  5812. Obsolete.  Use `paren-set-mode' instead." t nil)
  5813.  
  5814. ;;;***
  5815.  
  5816. ;;;### (autoloads (pending-delete pending-delete-off pending-delete-on) "pending-del" "packages/pending-del.el" (12193 28454))
  5817. ;;; Generated autoloads from packages/pending-del.el
  5818.  
  5819. (autoload 'pending-delete-on "pending-del" "\
  5820. Turn on pending delete.
  5821. When it is ON, typed text replaces the selection if the selection is active.
  5822. When it is OFF, typed text is just inserted at point." t nil)
  5823.  
  5824. (autoload 'pending-delete-off "pending-del" "\
  5825. Turn off pending delete.
  5826. When it is ON, typed text replaces the selection if the selection is active.
  5827. When it is OFF, typed text is just inserted at point." t nil)
  5828.  
  5829. (autoload 'pending-delete "pending-del" "\
  5830. Toggle automatic deletion of the selected region.
  5831. With a positive argument, turns it on.
  5832. With a non-positive argument, turns it off.
  5833. When active, typed text replaces the selection." t nil)
  5834.  
  5835. ;;;***
  5836.  
  5837. ;;;### (autoloads (ps-despool ps-spool-region-with-faces ps-spool-region ps-spool-buffer-with-faces ps-spool-buffer ps-print-region-with-faces ps-print-region ps-print-buffer-with-faces ps-print-buffer) "ps-print" "packages/ps-print.el" (12341 157))
  5838. ;;; Generated autoloads from packages/ps-print.el
  5839.  
  5840. (autoload 'ps-print-buffer "ps-print" "\
  5841. Generate and print a PostScript image of the buffer.
  5842.  
  5843. When called with a numeric prefix argument (C-u), prompts the user for
  5844. the name of a file to save the PostScript image in, instead of sending
  5845. it to the printer.
  5846.  
  5847. More specifically, the FILENAME argument is treated as follows: if it
  5848. is nil, send the image to the printer.  If FILENAME is a string, save
  5849. the PostScript image in a file with that name.  If FILENAME is a
  5850. number, prompt the user for the name of the file to save in." t nil)
  5851.  
  5852. (autoload 'ps-print-buffer-with-faces "ps-print" "\
  5853. Generate and print a PostScript image of the buffer.
  5854.  
  5855. Like `ps-print-buffer', but includes font, color, and underline
  5856. information in the generated image." t nil)
  5857.  
  5858. (autoload 'ps-print-region "ps-print" "\
  5859. Generate and print a PostScript image of the region.
  5860.  
  5861. Like `ps-print-buffer', but prints just the current region." t nil)
  5862.  
  5863. (autoload 'ps-print-region-with-faces "ps-print" "\
  5864. Generate and print a PostScript image of the region.
  5865.  
  5866. Like `ps-print-region', but includes font, color, and underline
  5867. information in the generated image." t nil)
  5868.  
  5869. (autoload 'ps-spool-buffer "ps-print" "\
  5870. Generate and spool a PostScript image of the buffer.
  5871.  
  5872. Like `ps-print-buffer' except that the PostScript image is saved in a
  5873. local buffer to be sent to the printer later.
  5874.  
  5875. Use the command `ps-despool' to send the spooled images to the printer." t nil)
  5876.  
  5877. (autoload 'ps-spool-buffer-with-faces "ps-print" "\
  5878. Generate and spool a PostScript image of the buffer.
  5879.  
  5880. Like `ps-spool-buffer', but includes font, color, and underline
  5881. information in the generated image.
  5882.  
  5883. Use the command `ps-despool' to send the spooled images to the printer." t nil)
  5884.  
  5885. (autoload 'ps-spool-region "ps-print" "\
  5886. Generate a PostScript image of the region and spool locally.
  5887.  
  5888. Like `ps-spool-buffer', but spools just the current region.
  5889.  
  5890. Use the command `ps-despool' to send the spooled images to the printer." t nil)
  5891.  
  5892. (autoload 'ps-spool-region-with-faces "ps-print" "\
  5893. Generate a PostScript image of the region and spool locally.
  5894.  
  5895. Like `ps-spool-region', but includes font, color, and underline
  5896. information in the generated image.
  5897.  
  5898. Use the command `ps-despool' to send the spooled images to the printer." t nil)
  5899.  
  5900. (autoload 'ps-despool "ps-print" "\
  5901. Send the spooled PostScript to the printer.
  5902.  
  5903. When called with a numeric prefix argument (C-u), prompt the user for
  5904. the name of a file to save the spooled PostScript in, instead of sending
  5905. it to the printer.
  5906.  
  5907. More specifically, the FILENAME argument is treated as follows: if it
  5908. is nil, send the image to the printer.  If FILENAME is a string, save
  5909. the PostScript image in a file with that name.  If FILENAME is a
  5910. number, prompt the user for the name of the file to save in." t nil)
  5911.  
  5912. ;;;***
  5913.  
  5914. ;;;### (autoloads (remote-compile) "rcompile" "packages/rcompile.el" (12299 54917))
  5915. ;;; Generated autoloads from packages/rcompile.el
  5916.  
  5917. (autoload 'remote-compile "rcompile" "\
  5918. Compile the the current buffer's directory on HOST.  Log in as USER.
  5919. See \\[compile]." t nil)
  5920.  
  5921. ;;;***
  5922.  
  5923. ;;;### (autoloads (server-start) "server" "packages/server.el" (12339 28632))
  5924. ;;; Generated autoloads from packages/server.el
  5925.  
  5926. (autoload 'server-start "server" "\
  5927. Allow this Emacs process to be a server for client processes.
  5928. This starts a server communications subprocess through which
  5929. client \"editors\" can send your editing commands to this Emacs job.
  5930. To use the server, set up the program `emacsclient' in the
  5931. Emacs distribution as your standard \"editor\".
  5932.  
  5933. Prefix arg means just kill any existing server communications subprocess." t nil)
  5934.  
  5935. ;;;***
  5936.  
  5937. ;;;### (autoloads (install-shell-fonts) "shell-font" "packages/shell-font.el" (12178 36815))
  5938. ;;; Generated autoloads from packages/shell-font.el
  5939.  
  5940. (autoload 'install-shell-fonts "shell-font" "\
  5941. Decorate the current interaction buffer with fonts.
  5942. This uses the faces called `shell-prompt', `shell-input' and `shell-output';
  5943. you can alter the graphical attributes of those with the normal
  5944. face-manipulation functions." nil nil)
  5945.  
  5946. ;;;***
  5947.  
  5948. ;;;### (autoloads (tar-mode) "tar-mode" "packages/tar-mode.el" (12190 24330))
  5949. ;;; Generated autoloads from packages/tar-mode.el
  5950.  
  5951. (autoload 'tar-mode "tar-mode" "\
  5952. Major mode for viewing a tar file as a dired-like listing of its contents.
  5953. You can move around using the usual cursor motion commands. 
  5954. Letters no longer insert themselves.
  5955. Type 'e' to pull a file out of the tar file and into its own buffer.
  5956. Type 'c' to copy an entry from the tar file into another file on disk.
  5957.  
  5958. If you edit a sub-file of this archive (as with the 'e' command) and 
  5959. save it with Control-X Control-S, the contents of that buffer will be 
  5960. saved back into the tar-file buffer; in this way you can edit a file 
  5961. inside of a tar archive without extracting it and re-archiving it.
  5962.  
  5963. See also: variables tar-update-datestamp and tar-anal-blocksize.
  5964. \\{tar-mode-map}" nil nil)
  5965.  
  5966. ;;;***
  5967.  
  5968. ;;;### (autoloads (terminal-emulator) "terminal" "packages/terminal.el" (12147 26483))
  5969. ;;; Generated autoloads from packages/terminal.el
  5970.  
  5971. (autoload 'terminal-emulator "terminal" "\
  5972. Under a display-terminal emulator in BUFFER, run PROGRAM on arguments ARGS.
  5973. ARGS is a list of argument-strings.  Remaining arguments are WIDTH and HEIGHT.
  5974. BUFFER's contents are made an image of the display generated by that program,
  5975. and any input typed when BUFFER is the current Emacs buffer is sent to that
  5976. program an keyboard input.
  5977.  
  5978. Interactively, BUFFER defaults to \"*terminal*\" and PROGRAM and ARGS
  5979. are parsed from an input-string using your usual shell.
  5980. WIDTH and HEIGHT are determined from the size of the current window
  5981. -- WIDTH will be one less than the window's width, HEIGHT will be its height.
  5982.  
  5983. To switch buffers and leave the emulator, or to give commands
  5984. to the emulator itself (as opposed to the program running under it),
  5985. type Control-^.  The following character is an emulator command.
  5986. Type Control-^ twice to send it to the subprogram.
  5987. This escape character may be changed using the variable `terminal-escape-char'.
  5988.  
  5989. `Meta' characters may not currently be sent through the terminal emulator.
  5990.  
  5991. Here is a list of some of the variables which control the behaviour
  5992. of the emulator -- see their documentation for more information:
  5993. terminal-escape-char, terminal-scrolling, terminal-more-processing,
  5994. terminal-redisplay-interval.
  5995.  
  5996. This function calls the value of terminal-mode-hook if that exists
  5997. and is non-nil after the terminal buffer has been set up and the
  5998. subprocess started.
  5999.  
  6000. Presently with `termcap' only; if somebody sends us code to make this
  6001. work with `terminfo' we will try to use it." t nil)
  6002.  
  6003. ;;;***
  6004.  
  6005. ;;;### (autoloads (batch-texinfo-format texinfo-format-region texinfo-format-buffer) "texinfmt" "packages/texinfmt.el" (12327 53734))
  6006. ;;; Generated autoloads from packages/texinfmt.el
  6007.  
  6008. (autoload 'texinfo-format-buffer "texinfmt" "\
  6009. Process the current buffer as texinfo code, into an Info file.
  6010. The Info file output is generated in a buffer visiting the Info file
  6011. names specified in the @setfilename command.
  6012.  
  6013. Non-nil argument (prefix, if interactive) means don't make tag table
  6014. and don't split the file if large.  You can use Info-tagify and
  6015. Info-split to do these manually." t nil)
  6016.  
  6017. (autoload 'texinfo-format-region "texinfmt" "\
  6018. Convert the current region of the Texinfo file to Info format.
  6019. This lets you see what that part of the file will look like in Info.
  6020. The command is bound to \\[texinfo-format-region].  The text that is
  6021. converted to Info is stored in a temporary buffer." t nil)
  6022.  
  6023. (autoload 'batch-texinfo-format "texinfmt" "\
  6024. Runs  texinfo-format-buffer  on the files remaining on the command line.
  6025. Must be used only with -batch, and kills emacs on completion.
  6026. Each file will be processed even if an error occurred previously.
  6027. For example, invoke
  6028.   \"emacs -batch -funcall batch-texinfo-format $docs/ ~/*.texinfo\"." nil nil)
  6029.  
  6030. ;;;***
  6031.  
  6032. ;;;### (autoloads (texinfo-sequential-node-update texinfo-every-node-update texinfo-update-node) "texnfo-upd" "packages/texnfo-upd.el" (12285 55376))
  6033. ;;; Generated autoloads from packages/texnfo-upd.el
  6034.  
  6035. (autoload 'texinfo-update-node "texnfo-upd" "\
  6036. Without any prefix argument, update the node in which point is located.
  6037. Non-nil argument (prefix, if interactive) means update the nodes in the
  6038. marked region.
  6039.  
  6040. The functions for creating or updating nodes and menus, and their
  6041. keybindings, are:
  6042.  
  6043.     texinfo-update-node (&optional region-p)    \\[texinfo-update-node]
  6044.     texinfo-every-node-update ()                \\[texinfo-every-node-update]
  6045.     texinfo-sequential-node-update (&optional region-p)
  6046.  
  6047.     texinfo-make-menu (&optional region-p)      \\[texinfo-make-menu]
  6048.     texinfo-all-menus-update ()                 \\[texinfo-all-menus-update]
  6049.     texinfo-master-menu ()
  6050.  
  6051.     texinfo-indent-menu-description (column &optional region-p)
  6052.  
  6053. The `texinfo-column-for-description' variable specifies the column to
  6054. which menu descriptions are indented. Its default value is 32." t nil)
  6055.  
  6056. (autoload 'texinfo-every-node-update "texnfo-upd" "\
  6057. Update every node in a Texinfo file." t nil)
  6058.  
  6059. (autoload 'texinfo-sequential-node-update "texnfo-upd" "\
  6060. Update one node (or many) in a Texinfo file with sequential pointers.
  6061.  
  6062. This function causes the `Next' or `Previous' pointer to point to the
  6063. immediately preceding or following node, even if it is at a higher or
  6064. lower hierarchical level in the document.  Continually pressing `n' or
  6065. `p' takes you straight through the file.
  6066.  
  6067. Without any prefix argument, update the node in which point is located.
  6068. Non-nil argument (prefix, if interactive) means update the nodes in the
  6069. marked region.
  6070.  
  6071. This command makes it awkward to navigate among sections and
  6072. subsections; it should be used only for those documents that are meant
  6073. to be read like a novel rather than a reference, and for which the
  6074. Info `g*' command is inadequate." t nil)
  6075.  
  6076. ;;;***
  6077.  
  6078. ;;;### (autoloads (time-stamp) "time-stamp" "packages/time-stamp.el" (12013 11732))
  6079. ;;; Generated autoloads from packages/time-stamp.el
  6080.  
  6081. (autoload 'time-stamp "time-stamp" "\
  6082. Update the time stamp string in the buffer.
  6083. Only does its thing if the variable  time-stamp-active  is non-nil.
  6084. Typically used on  write-file-hooks  for automatic time-stamping.
  6085. The format of the time stamp is determined by the variable
  6086. time-stamp-format.  The first  time-stamp-line-limit  lines of the
  6087. buffer (normally 8) are searched for the time stamp template,
  6088. and if it is found, a new time stamp is written into it." t nil)
  6089.  
  6090. ;;;***
  6091.  
  6092. ;;;### (autoloads (display-time) "time" "packages/time.el" (12346 23695))
  6093. ;;; Generated autoloads from packages/time.el
  6094.  
  6095. (defvar display-time-day-and-date nil "\
  6096. *Non-nil means \\[display-time] should display day and date as well as time.")
  6097.  
  6098. (autoload 'display-time "time" "\
  6099. Display current time, load level, and mail flag in mode line of each buffer.
  6100. Updates automatically every minute.
  6101. If `display-time-day-and-date' is non-nil, the current day and date
  6102. are displayed as well.
  6103. After each update, `display-time-hook' is run with `run-hooks'.
  6104. If `display-time-echo-area' is non-nil, the time is displayed in the
  6105. echo area instead of in the mode-line." t nil)
  6106.  
  6107. ;;;***
  6108.  
  6109. ;;;### (autoloads (ununderline-and-unoverstrike-region overstrike-region unoverstrike-region ununderline-region underline-region) "underline" "packages/underline.el" (12147 26482))
  6110. ;;; Generated autoloads from packages/underline.el
  6111.  
  6112. (autoload 'underline-region "underline" "\
  6113. Underline all nonblank characters in the region.
  6114. Works by overstriking underscores.
  6115. Called from program, takes two arguments START and END
  6116. which specify the range to operate on." t nil)
  6117.  
  6118. (autoload 'ununderline-region "underline" "\
  6119. Remove all underlining (overstruck underscores) in the region.
  6120. Called from program, takes two arguments START and END
  6121. which specify the range to operate on." t nil)
  6122.  
  6123. (autoload 'unoverstrike-region "underline" "\
  6124. Remove all overstriking (character-backspace-character) in the region.
  6125. Called from program, takes two arguments START and END which specify the
  6126. range to operate on." t nil)
  6127.  
  6128. (autoload 'overstrike-region "underline" "\
  6129. Overstrike (character-backspace-character) all nonblank characters in
  6130. the region. Called from program, takes two arguments START and END which
  6131. specify the range to operate on." t nil)
  6132.  
  6133. (autoload 'ununderline-and-unoverstrike-region "underline" "\
  6134. Remove underlining and overstriking in the region.  Called from a program,
  6135. takes two arguments START and END which specify the range to operate on." t nil)
  6136.  
  6137. ;;;***
  6138.  
  6139. ;;;### (autoloads (ask-to-update-copyright update-copyright) "upd-copyr" "packages/upd-copyr.el" (12263 29487))
  6140. ;;; Generated autoloads from packages/upd-copyr.el
  6141.  
  6142. (defvar copyright-do-not-disturb "Free Software Foundation, Inc." "\
  6143. *If non-nil, the existing copyright holder is checked against this regexp.
  6144. If it does not match, then a new copyright line is added with the copyright
  6145. holder set to the value of `copyright-whoami'.")
  6146.  
  6147. (defvar copyright-whoami nil "\
  6148. *A string containing the name of the owner of new copyright notices.")
  6149.  
  6150. (defvar copyright-notice-file nil "\
  6151. *If non-nil, replace copying notices with this file.")
  6152.  
  6153. (autoload 'update-copyright "upd-copyr" "\
  6154. Update the copyright notice at the beginning of the buffer
  6155. to indicate the current year.  If optional arg REPLACE is given
  6156. \(interactively, with prefix arg) replace the years in the notice
  6157. rather than adding the current year after them.
  6158. If `copyright-notice-file' is set, the copying permissions following the
  6159. copyright are replaced as well.
  6160.  
  6161. If optional third argument ASK is non-nil, the user is prompted for whether
  6162. or not to update the copyright.  If optional fourth argument ASK-YEAR is
  6163. non-nil, the user is prompted for whether or not to replace the year rather
  6164. than adding to it." t nil)
  6165.  
  6166. (autoload 'ask-to-update-copyright "upd-copyr" "\
  6167. If the current buffer contains a copyright notice that is out of date,
  6168. ask the user if it should be updated with `update-copyright' (which see).
  6169. Put this on write-file-hooks." nil nil)
  6170.  
  6171. ;;;***
  6172.  
  6173. ;;;### (autoloads (vc-update-change-log vc-rename-file vc-cancel-version vc-revert-buffer vc-print-log vc-retrieve-snapshot vc-create-snapshot vc-directory vc-insert-headers vc-version-other-window vc-version-diff vc-diff vc-register vc-next-action vc-file-status) "vc" "packages/vc.el" (12356 62985))
  6174. ;;; Generated autoloads from packages/vc.el
  6175.  
  6176. (defvar vc-checkin-hook nil "\
  6177. *List of functions called after a checkin is done.  See `run-hooks'.")
  6178.  
  6179. (autoload 'vc-file-status "vc" "\
  6180. Display the current status of the file being visited.
  6181. Currently, this is only defined for CVS.  The information provided in the
  6182. modeline is generally sufficient for RCS and SCCS." t nil)
  6183.  
  6184. (autoload 'vc-next-action "vc" "\
  6185. Do the next logical checkin or checkout operation on the current file.
  6186.  
  6187. For RCS and SCCS files:
  6188.    If the file is not already registered, this registers it for version
  6189. control and then retrieves a writable, locked copy for editing.
  6190.    If the file is registered and not locked by anyone, this checks out
  6191. a writable and locked file ready for editing.
  6192.    If the file is checked out and locked by the calling user, this
  6193. first checks to see if the file has changed since checkout.  If not,
  6194. it performs a revert.
  6195.    If the file has been changed, this pops up a buffer for entry
  6196. of a log message; when the message has been entered, it checks in the
  6197. resulting changes along with the log message as change commentary.  If
  6198. the variable `vc-keep-workfiles' is non-nil (which is its default), a
  6199. read-only copy of the changed file is left in place afterwards.
  6200.    If the file is registered and locked by someone else, you are given
  6201. the option to steal the lock.
  6202.  
  6203. For CVS files:
  6204.    If the file is not already registered, this registers it for version
  6205. control.  This does a \"cvs add\", but no \"cvs commit\".
  6206.    If the file is added but not committed, it is committed.
  6207.    If the file has not been changed, neither in your working area or
  6208. in the repository, a message is printed and nothing is done.
  6209.    If your working file is changed, but the repository file is
  6210. unchanged, this pops up a buffer for entry of a log message; when the
  6211. message has been entered, it checks in the resulting changes along
  6212. with the logmessage as change commentary.  A writable file is retained.
  6213.    If the repository file is changed, you are asked if you want to
  6214. merge in the changes into your working copy.
  6215.  
  6216. The following is true regardless of which version control system you
  6217. are using:
  6218.  
  6219.    If you call this from within a VC dired buffer with no files marked,
  6220. it will operate on the file in the current line.
  6221.    If you call this from within a VC dired buffer, and one or more
  6222. files are marked, it will accept a log message and then operate on
  6223. each one.  The log message will be used as a comment for any register
  6224. or checkin operations, but ignored when doing checkouts.  Attempted
  6225. lock steals will raise an error.
  6226.  
  6227.    For checkin, a prefix argument lets you specify the version number to use." t nil)
  6228.  
  6229. (autoload 'vc-register "vc" "\
  6230. Register the current file into your version-control system." t nil)
  6231.  
  6232. (autoload 'vc-diff "vc" "\
  6233. Display diffs between file versions.
  6234. Normally this compares the current file and buffer with the most recent 
  6235. checked in version of that file.  This uses no arguments.
  6236. With a prefix argument, it reads the file name to use
  6237. and two version designators specifying which versions to compare." t nil)
  6238.  
  6239. (autoload 'vc-version-diff "vc" "\
  6240. For FILE, report diffs between two stored versions REL1 and REL2 of it.
  6241. If FILE is a directory, generate diffs between versions for all registered
  6242. files in or below it." t nil)
  6243.  
  6244. (autoload 'vc-version-other-window "vc" "\
  6245. Visit version REV of the current buffer in another window.
  6246. If the current buffer is named `F', the version is named `F.~REV~'.
  6247. If `F.~REV~' already exists, it is used instead of being re-created." t nil)
  6248.  
  6249. (autoload 'vc-insert-headers "vc" "\
  6250. Insert headers in a file for use with your version-control system.
  6251. Headers desired are inserted at the start of the buffer, and are pulled from
  6252. the variable `vc-header-alist'." t nil)
  6253.  
  6254. (autoload 'vc-directory "vc" "\
  6255. Show version-control status of all files in the directory DIR.
  6256. If the second argument VERBOSE is non-nil, show all files;
  6257. otherwise show only files that current locked in the version control system.
  6258. Interactively, supply a prefix arg to make VERBOSE non-nil.
  6259.  
  6260. If the optional third argument NESTED is non-nil,
  6261. scan the entire tree of subdirectories of the current directory." t nil)
  6262.  
  6263. (autoload 'vc-create-snapshot "vc" "\
  6264. Make a snapshot called NAME.
  6265. The snapshot is made from all registered files at or below the current
  6266. directory.  For each file, the version level of its latest
  6267. version becomes part of the named configuration." t nil)
  6268.  
  6269. (autoload 'vc-retrieve-snapshot "vc" "\
  6270. Retrieve the snapshot called NAME.
  6271. This function fails if any files are locked at or below the current directory
  6272. Otherwise, all registered files are checked out (unlocked) at their version
  6273. levels in the snapshot." t nil)
  6274.  
  6275. (autoload 'vc-print-log "vc" "\
  6276. List the change log of the current buffer in a window." t nil)
  6277.  
  6278. (autoload 'vc-revert-buffer "vc" "\
  6279. Revert the current buffer's file back to the latest checked-in version.
  6280. This asks for confirmation if the buffer contents are not identical
  6281. to that version.
  6282. If the back-end is CVS, this will give you the most recent revision of
  6283. the file on the branch you are editing." t nil)
  6284.  
  6285. (autoload 'vc-cancel-version "vc" "\
  6286. Get rid of most recently checked in version of this file.
  6287. A prefix argument means do not revert the buffer afterwards." t nil)
  6288.  
  6289. (autoload 'vc-rename-file "vc" "\
  6290. Rename file OLD to NEW, and rename its master file likewise." t nil)
  6291.  
  6292. (autoload 'vc-update-change-log "vc" "\
  6293. Find change log file and add entries from recent RCS logs.
  6294. The mark is left at the end of the text prepended to the change log.
  6295. With prefix arg of C-u, only find log entries for the current buffer's file.
  6296. With any numeric prefix arg, find log entries for all files currently visited.
  6297. Otherwise, find log entries for all registered files in the default directory.
  6298. From a program, any arguments are passed to the `rcs2log' script." t nil)
  6299.  
  6300. ;;;***
  6301.  
  6302. ;;;### (autoloads (webster-spell webster-endings webster) "webster" "packages/webster.el" (12122 14003))
  6303. ;;; Generated autoloads from packages/webster.el
  6304.  
  6305. (autoload 'webster "webster" "\
  6306. Look up a word in the Webster's dictionary.
  6307. Open a network login connection to a webster host if necessary.
  6308. Communication with host is recorded in a buffer *webster*." t nil)
  6309.  
  6310. (autoload 'webster-endings "webster" "\
  6311. Look up endings for a word in the Webster's dictionary.
  6312. Open a network login connection to a webster host if necessary.
  6313. Communication with host is recorded in a buffer *webster*." t nil)
  6314.  
  6315. (autoload 'webster-spell "webster" "\
  6316. Look spelling for a word in the Webster's dictionary.
  6317. Open a network login connection to a webster host if necessary.
  6318. Communication with host is recorded in a buffer *webster*." t nil)
  6319.  
  6320. ;;;***
  6321.  
  6322. ;;;### (autoloads (run-scheme) "xscheme" "packages/xscheme.el" (12355 35659))
  6323. ;;; Generated autoloads from packages/xscheme.el
  6324.  
  6325. (defvar scheme-program-name "scheme" "\
  6326. *Program invoked by the `run-scheme' command.")
  6327.  
  6328. (defvar scheme-band-name nil "\
  6329. *Band loaded by the `run-scheme' command.")
  6330.  
  6331. (defvar scheme-program-arguments nil "\
  6332. *Arguments passed to the Scheme program by the `run-scheme' command.")
  6333.  
  6334. (autoload 'run-scheme "xscheme" "\
  6335. Run an inferior Scheme process.
  6336. Output goes to the buffer `*scheme*'.
  6337. With argument, asks for a command line." t nil)
  6338.  
  6339. ;;;***
  6340.  
  6341. ;;;### (autoloads (cvs-update-other-window cvs-update) "pcl-cvs" "pcl-cvs/pcl-cvs.el" (12142 23843))
  6342. ;;; Generated autoloads from pcl-cvs/pcl-cvs.el
  6343.  
  6344. (autoload 'cvs-update "pcl-cvs" "\
  6345. Run a 'cvs update' in the current working directory. Feed the
  6346. output to a *cvs* buffer and run cvs-mode on it.
  6347. If optional prefix argument LOCAL is non-nil, 'cvs update -l' is run." t nil)
  6348.  
  6349. (autoload 'cvs-update-other-window "pcl-cvs" "\
  6350. Run a 'cvs update' in the current working directory. Feed the
  6351. output to a *cvs* buffer, display it in the other window, and run
  6352. cvs-mode on it.
  6353.  
  6354. If optional prefix argument LOCAL is non-nil, 'cvs update -l' is run." t nil)
  6355.  
  6356. ;;;***
  6357.  
  6358. ;;;### (autoloads (about-xemacs) "about" "prim/about.el" (12355 23829))
  6359. ;;; Generated autoloads from prim/about.el
  6360.  
  6361. (autoload 'about-xemacs "about" nil t nil)
  6362.  
  6363. ;;;***
  6364.  
  6365. ;;;### (autoloads (describe-buffer-case-table) "case-table" "prim/case-table.el" (12147 26507))
  6366. ;;; Generated autoloads from prim/case-table.el
  6367.  
  6368. (autoload 'describe-buffer-case-table "case-table" "\
  6369. Describe the case table of the current buffer." t nil)
  6370.  
  6371. ;;;***
  6372.  
  6373. ;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug" "prim/debug.el" (12322 9371))
  6374. ;;; Generated autoloads from prim/debug.el
  6375.  
  6376. (autoload 'debug "debug" "\
  6377. Enter debugger.  To return, type \\<debugger-mode-map>`\\[debugger-continue]'.
  6378. Arguments are mainly for use when this is called
  6379.  from the internals of the evaluator.
  6380. You may call with no args, or you may
  6381.  pass nil as the first arg and any other args you like.
  6382.  In that case, the list of args after the first will 
  6383.  be printed into the backtrace buffer." nil nil)
  6384.  
  6385. (autoload 'debug-on-entry "debug" "\
  6386. Request FUNCTION to invoke debugger each time it is called.
  6387. If you tell the debugger to continue, FUNCTION's execution proceeds.
  6388. This works by modifying the definition of FUNCTION,
  6389. which must be written in Lisp, not predefined.
  6390. Use \\[cancel-debug-on-entry] to cancel the effect of this command.
  6391. Redefining FUNCTION also cancels it." t nil)
  6392.  
  6393. (autoload 'cancel-debug-on-entry "debug" "\
  6394. Undo effect of \\[debug-on-entry] on FUNCTION.
  6395. If argument is nil or an empty string, cancel for all functions." t nil)
  6396.  
  6397. ;;;***
  6398.  
  6399. ;;;### (autoloads (standard-display-european standard-display-underline standard-display-graphic standard-display-g1 standard-display-ascii standard-display-default standard-display-8bit make-display-table describe-current-display-table) "disp-table" "prim/disp-table.el" (12288 42292))
  6400. ;;; Generated autoloads from prim/disp-table.el
  6401.  
  6402. (autoload 'describe-current-display-table "disp-table" "\
  6403. Describe the display table in use in the selected window and buffer." t nil)
  6404.  
  6405. (autoload 'make-display-table "disp-table" "\
  6406. Return a new, empty display table." nil nil)
  6407.  
  6408. (autoload 'standard-display-8bit "disp-table" "\
  6409. Display characters in the range L to H literally." nil nil)
  6410.  
  6411. (autoload 'standard-display-default "disp-table" "\
  6412. Display characters in the range L to H using the default notation." nil nil)
  6413.  
  6414. (autoload 'standard-display-ascii "disp-table" "\
  6415. Display character C using printable string S." nil nil)
  6416.  
  6417. (autoload 'standard-display-g1 "disp-table" "\
  6418. Display character C as character SC in the g1 character set.
  6419. This function assumes that your terminal uses the SO/SI characters;
  6420. it is meaningless for an X frame." nil nil)
  6421.  
  6422. (autoload 'standard-display-graphic "disp-table" "\
  6423. Display character C as character GC in graphics character set.
  6424. This function assumes VT100-compatible escapes; it is meaningless for an
  6425. X frame." nil nil)
  6426.  
  6427. (autoload 'standard-display-underline "disp-table" "\
  6428. Display character C as character UC plus underlining." nil nil)
  6429.  
  6430. (autoload 'standard-display-european "disp-table" "\
  6431. Toggle display of European characters encoded with ISO 8859.
  6432. When enabled, characters in the range of 160 to 255 display not
  6433. as octal escapes, but as accented characters.
  6434. With prefix argument, enable European character display iff arg is positive." t nil)
  6435.  
  6436. ;;;***
  6437.  
  6438. ;;;### (autoloads (setenv) "env" "prim/env.el" (12211 28166))
  6439. ;;; Generated autoloads from prim/env.el
  6440.  
  6441. (autoload 'setenv "env" "\
  6442. Set the value of the environment variable named VARIABLE to VALUE.
  6443. VARIABLE should be a string.  VALUE is optional; if not provided or is
  6444. `nil', the environment variable VARIABLE will be removed.  
  6445. This function works by modifying `process-environment'." t nil)
  6446.  
  6447. ;;;***
  6448.  
  6449. ;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query insert-kbd-macro name-last-kbd-macro) "macros" "prim/macros.el" (12178 29455))
  6450. ;;; Generated autoloads from prim/macros.el
  6451.  
  6452. (autoload 'name-last-kbd-macro "macros" "\
  6453. Assign a name to the last keyboard macro defined.
  6454. Argument SYMBOL is the name to define.
  6455. The symbol's function definition becomes the keyboard macro string.
  6456. Such a \"function\" cannot be called from Lisp, but it is a valid
  6457. editor command." t nil)
  6458.  
  6459. (autoload 'insert-kbd-macro "macros" "\
  6460. Insert in buffer the definition of kbd macro NAME, as Lisp code.
  6461. Optional second argument KEYS means also record the keys it is on
  6462. \(this is the prefix argument, when calling interactively).
  6463.  
  6464. This Lisp code will, when executed, define the kbd macro with the
  6465. same definition it has now.  If you say to record the keys,
  6466. the Lisp code will also rebind those keys to the macro.
  6467. Only global key bindings are recorded since executing this Lisp code
  6468. always makes global bindings.
  6469.  
  6470. To save a kbd macro, visit a file of Lisp code such as your `~/.emacs',
  6471. use this command, and then save the file." t nil)
  6472.  
  6473. (autoload 'kbd-macro-query "macros" "\
  6474. Query user during kbd macro execution.
  6475. With prefix argument, enters recursive edit,
  6476.  reading keyboard commands even within a kbd macro.
  6477.  You can give different commands each time the macro executes.
  6478. Without prefix argument, asks whether to continue running the macro.
  6479. Your options are: \\<query-replace-map>
  6480. \\[act]    Finish this iteration normally and continue with the next.
  6481. \\[skip]    Skip the rest of this iteration, and start the next.
  6482. \\[exit]    Stop the macro entirely right now.
  6483. \\[recenter]    Redisplay the frame, then ask again.
  6484. \\[edit]    Enter recursive edit; ask again when you exit from that." t nil)
  6485.  
  6486. (autoload 'apply-macro-to-region-lines "macros" "\
  6487. For each complete line between point and mark, move to the beginning
  6488. of the line, and run the last keyboard macro.
  6489.  
  6490. When called from lisp, this function takes two arguments TOP and
  6491. BOTTOM, describing the current region.  TOP must be before BOTTOM.
  6492. The optional third argument MACRO specifies a keyboard macro to
  6493. execute.
  6494.  
  6495. This is useful for quoting or unquoting included text, adding and
  6496. removing comments, or producing tables where the entries are regular.
  6497.  
  6498. For example, in Usenet articles, sections of text quoted from another
  6499. author are indented, or have each line start with `>'.  To quote a
  6500. section of text, define a keyboard macro which inserts `>', put point
  6501. and mark at opposite ends of the quoted section, and use
  6502. `\\[apply-macro-to-region-lines]' to mark the entire section.
  6503.  
  6504. Suppose you wanted to build a keyword table in C where each entry
  6505. looked like this:
  6506.  
  6507.     { \"foo\", foo_data, foo_function }, 
  6508.     { \"bar\", bar_data, bar_function },
  6509.     { \"baz\", baz_data, baz_function },
  6510.  
  6511. You could enter the names in this format:
  6512.  
  6513.     foo
  6514.     bar
  6515.     baz
  6516.  
  6517. and write a macro to massage a word into a table entry:
  6518.  
  6519.     \\C-x (
  6520.        \\M-d { \"\\C-y\", \\C-y_data, \\C-y_function },
  6521.     \\C-x )
  6522.  
  6523. and then select the region of un-tablified names and use
  6524. `\\[apply-macro-to-region-lines]' to build the table from the names.
  6525. " t nil)
  6526.  
  6527. ;;;***
  6528.  
  6529. ;;;### (autoloads (disable-command enable-command disabled-command-hook) "novice" "prim/novice.el" (12354 14359))
  6530. ;;; Generated autoloads from prim/novice.el
  6531.  
  6532. (autoload 'disabled-command-hook "novice" nil nil nil)
  6533.  
  6534. (autoload 'enable-command "novice" "\
  6535. Allow COMMAND to be executed without special confirmation from now on.
  6536. The user's .emacs file is altered so that this will apply
  6537. to future sessions." t nil)
  6538.  
  6539. (autoload 'disable-command "novice" "\
  6540. Require special confirmation to execute COMMAND from now on.
  6541. The user's .emacs file is altered so that this will apply
  6542. to future sessions." t nil)
  6543.  
  6544. ;;;***
  6545.  
  6546. ;;;### (autoloads (edit-options list-options) "options" "prim/options.el" (12211 28142))
  6547. ;;; Generated autoloads from prim/options.el
  6548.  
  6549. (autoload 'list-options "options" "\
  6550. Display a list of XEmacs user options, with values and documentation." t nil)
  6551.  
  6552. (autoload 'edit-options "options" "\
  6553. Edit a list of XEmacs user option values.
  6554. Selects a buffer containing such a list,
  6555. in which there are commands to set the option values.
  6556. Type \\[describe-mode] in that buffer for a list of commands." t nil)
  6557.  
  6558. ;;;***
  6559.  
  6560. ;;;### (autoloads (clear-rectangle string-rectangle open-rectangle insert-rectangle yank-rectangle kill-rectangle extract-rectangle delete-extract-rectangle delete-rectangle) "rect" "prim/rect.el" (12217 28630))
  6561. ;;; Generated autoloads from prim/rect.el
  6562.  
  6563. (autoload 'delete-rectangle "rect" "\
  6564. Delete (don't save) text in rectangle with point and mark as corners.
  6565. The same range of columns is deleted in each line
  6566. starting with the line where the region begins
  6567. and ending with the line where the region ends." t nil)
  6568.  
  6569. (autoload 'delete-extract-rectangle "rect" "\
  6570. Delete contents of rectangle and return it as a list of strings.
  6571. Arguments START and END are the corners of the rectangle.
  6572. The value is list of strings, one for each line of the rectangle." nil nil)
  6573.  
  6574. (autoload 'extract-rectangle "rect" "\
  6575. Return contents of rectangle with corners at START and END.
  6576. Value is list of strings, one for each line of the rectangle." nil nil)
  6577.  
  6578. (defvar killed-rectangle nil "\
  6579. Rectangle for yank-rectangle to insert.")
  6580.  
  6581. (autoload 'kill-rectangle "rect" "\
  6582. Delete rectangle with corners at point and mark; save as last killed one.
  6583. Calling from program, supply two args START and END, buffer positions.
  6584. But in programs you might prefer to use `delete-extract-rectangle'." t nil)
  6585.  
  6586. (autoload 'yank-rectangle "rect" "\
  6587. Yank the last killed rectangle with upper left corner at point." t nil)
  6588.  
  6589. (autoload 'insert-rectangle "rect" "\
  6590. Insert text of RECTANGLE with upper left corner at point.
  6591. RECTANGLE's first line is inserted at point,
  6592. its second line is inserted at a point vertically under point, etc.
  6593. RECTANGLE should be a list of strings.
  6594. After this command, the mark is at the upper left corner
  6595. and point is at the lower right corner." nil nil)
  6596.  
  6597. (autoload 'open-rectangle "rect" "\
  6598. Blank out rectangle with corners at point and mark, shifting text right.
  6599. The text previously in the region is not overwritten by the blanks,
  6600. but instead winds up to the right of the rectangle." t nil)
  6601.  
  6602. (autoload 'string-rectangle "rect" "\
  6603. Insert STRING on each line of the region-rectangle, shifting text right.
  6604. The left edge of the rectangle specifies the column for insertion.
  6605. This command does not delete or overwrite any existing text.
  6606.  
  6607. Called from a program, takes three args; START, END and STRING." t nil)
  6608.  
  6609. (autoload 'clear-rectangle "rect" "\
  6610. Blank out rectangle with corners at point and mark.
  6611. The text previously in the region is overwritten by the blanks.
  6612. When called from a program, requires two args which specify the corners." t nil)
  6613.  
  6614. ;;;***
  6615.  
  6616. ;;;### (autoloads (reposition-window) "reposition" "prim/reposition.el" (12147 26520))
  6617. ;;; Generated autoloads from prim/reposition.el
  6618.  
  6619. (autoload 'reposition-window "reposition" "\
  6620. Make the current definition and/or comment visible.
  6621. Further invocations move it to the top of the window or toggle the
  6622. visibility of comments that precede it.
  6623.   Point is left unchanged unless prefix ARG is supplied.
  6624.   If the definition is fully onscreen, it is moved to the top of the
  6625. window.  If it is partly offscreen, the window is scrolled to get the
  6626. definition (or as much as will fit) onscreen, unless point is in a comment
  6627. which is also partly offscreen, in which case the scrolling attempts to get
  6628. as much of the comment onscreen as possible.
  6629.   Initially `reposition-window' attempts to make both the definition and
  6630. preceding comments visible.  Further invocations toggle the visibility of
  6631. the comment lines.
  6632.   If ARG is non-nil, point may move in order to make the whole defun
  6633. visible (if only part could otherwise be made so), to make the defun line
  6634. visible (if point is in code and it could not be made so, or if only
  6635. comments, including the first comment line, are visible), or to make the
  6636. first comment line visible (if point is in a comment)." t nil)
  6637.  
  6638. ;;;***
  6639.  
  6640. ;;;### (autoloads (reverse-region sort-columns sort-regexp-fields sort-fields sort-float-fields sort-numeric-fields sort-pages sort-paragraphs sort-lines sort-subr) "sort" "prim/sort.el" (12211 28161))
  6641. ;;; Generated autoloads from prim/sort.el
  6642.  
  6643. (autoload 'sort-subr "sort" "\
  6644. General text sorting routine to divide buffer into records and sort them.
  6645. Arguments are REVERSE NEXTRECFUN ENDRECFUN &optional STARTKEYFUN ENDKEYFUN.
  6646.  
  6647. We divide the accessible portion of the buffer into disjoint pieces
  6648. called sort records.  A portion of each sort record (perhaps all of
  6649. it) is designated as the sort key.  The records are rearranged in the
  6650. buffer in order by their sort keys.  The records may or may not be
  6651. contiguous.
  6652.  
  6653. Usually the records are rearranged in order of ascending sort key.
  6654. If REVERSE is non-nil, they are rearranged in order of descending sort key.
  6655.  
  6656. The next four arguments are functions to be called to move point
  6657. across a sort record.  They will be called many times from within sort-subr.
  6658.  
  6659. NEXTRECFUN is called with point at the end of the previous record.
  6660. It moves point to the start of the next record.
  6661. It should move point to the end of the buffer if there are no more records.
  6662. The first record is assumed to start at the position of point when sort-subr
  6663. is called.
  6664.  
  6665. ENDRECFUN is called with point within the record.
  6666. It should move point to the end of the record.
  6667.  
  6668. STARTKEYFUN moves from the start of the record to the start of the key.
  6669. It may return either a non-nil value to be used as the key, or
  6670. else the key is the substring between the values of point after
  6671. STARTKEYFUN and ENDKEYFUN are called.  If STARTKEYFUN is nil, the key
  6672. starts at the beginning of the record.
  6673.  
  6674. ENDKEYFUN moves from the start of the sort key to the end of the sort key.
  6675. ENDKEYFUN may be nil if STARTKEYFUN returns a value or if it would be the
  6676. same as ENDRECFUN." nil nil)
  6677.  
  6678. (autoload 'sort-lines "sort" "\
  6679. Sort lines in region alphabetically; argument means descending order.
  6680. Called from a program, there are three arguments:
  6681. REVERSE (non-nil means reverse order), BEG and END (region to sort)." t nil)
  6682.  
  6683. (autoload 'sort-paragraphs "sort" "\
  6684. Sort paragraphs in region alphabetically; argument means descending order.
  6685. Called from a program, there are three arguments:
  6686. REVERSE (non-nil means reverse order), BEG and END (region to sort)." t nil)
  6687.  
  6688. (autoload 'sort-pages "sort" "\
  6689. Sort pages in region alphabetically; argument means descending order.
  6690. Called from a program, there are three arguments:
  6691. REVERSE (non-nil means reverse order), BEG and END (region to sort)." t nil)
  6692.  
  6693. (autoload 'sort-numeric-fields "sort" "\
  6694. Sort lines in region numerically by the ARGth field of each line.
  6695. Fields are separated by whitespace and numbered from 1 up.
  6696. Specified field must contain a number in each line of the region.
  6697. With a negative arg, sorts by the ARGth field counted from the right.
  6698. Called from a program, there are three arguments:
  6699. FIELD, BEG and END.  BEG and END specify region to sort.
  6700. If you want to sort floating-point numbers, try `sort-float-fields'." t nil)
  6701.  
  6702. (autoload 'sort-float-fields "sort" "\
  6703. Sort lines in region numerically by the ARGth field of each line.
  6704. Fields are separated by whitespace and numbered from 1 up.  Specified field
  6705. must contain a floating point number in each line of the region.  With a
  6706. negative arg, sorts by the ARGth field counted from the right.  Called from a
  6707. program, there are three arguments: FIELD, BEG and END.  BEG and END specify
  6708. region to sort." t nil)
  6709.  
  6710. (autoload 'sort-fields "sort" "\
  6711. Sort lines in region lexicographically by the ARGth field of each line.
  6712. Fields are separated by whitespace and numbered from 1 up.
  6713. With a negative arg, sorts by the ARGth field counted from the right.
  6714. Called from a program, there are three arguments:
  6715. FIELD, BEG and END.  BEG and END specify region to sort." t nil)
  6716.  
  6717. (autoload 'sort-regexp-fields "sort" "\
  6718. Sort the region lexicographically as specified by RECORD-REGEXP and KEY.
  6719. RECORD-REGEXP specifies the textual units which should be sorted.
  6720.   For example, to sort lines RECORD-REGEXP would be \"^.*$\"
  6721. KEY specifies the part of each record (ie each match for RECORD-REGEXP)
  6722.   is to be used for sorting.
  6723.   If it is \"\\digit\" then the digit'th \"\\(...\\)\" match field from
  6724.   RECORD-REGEXP is used.
  6725.   If it is \"\\&\" then the whole record is used.
  6726.   Otherwise, it is a regular-expression for which to search within the record.
  6727. If a match for KEY is not found within a record then that record is ignored.
  6728.  
  6729. With a negative prefix arg sorts in reverse order.
  6730.  
  6731. For example: to sort lines in the region by the first word on each line
  6732.  starting with the letter \"f\",
  6733.  RECORD-REGEXP would be \"^.*$\" and KEY would be \"\\=\\<f\\w*\\>\"" t nil)
  6734.  
  6735. (autoload 'sort-columns "sort" "\
  6736. Sort lines in region alphabetically by a certain range of columns.
  6737. For the purpose of this command, the region includes
  6738. the entire line that point is in and the entire line the mark is in.
  6739. The column positions of point and mark bound the range of columns to sort on.
  6740. A prefix argument means sort into reverse order.
  6741.  
  6742. Note that `sort-columns' rejects text that contains tabs,
  6743. because tabs could be split across the specified columns
  6744. and it doesn't know how to handle that.  Also, when possible,
  6745. it uses the `sort' utility program, which doesn't understand tabs.
  6746. Use \\[untabify] to convert tabs to spaces before sorting." t nil)
  6747.  
  6748. (autoload 'reverse-region "sort" "\
  6749. Reverse the order of lines in a region.
  6750. From a program takes two point or marker arguments, BEG and END." t nil)
  6751.  
  6752. ;;;***
  6753.  
  6754. ;;;### (autoloads (load-default-sounds load-sound-file) "sound" "prim/sound.el" (12263 29501))
  6755. ;;; Generated autoloads from prim/sound.el
  6756.  
  6757. (or sound-alist (setq sound-alist '((ready nil) (warp nil))))
  6758.  
  6759. (autoload 'load-sound-file "sound" "\
  6760. Read in an audio-file and add it to the sound-alist.
  6761.  
  6762. You can only play sound files if you are running on display 0 of the console
  6763. of a Sun SparcStation, SGI machine, or HP9000s700, or running a NetAudio
  6764. server.  The sound file must be in the Sun/NeXT U-LAW format." t nil)
  6765.  
  6766. (autoload 'load-default-sounds "sound" "\
  6767. Load and install some sound files as beep-types.
  6768. This only works if you're on display 0 of a Sun SparcStation, SGI machine,
  6769. or HP9000s700, or running a NetAudio server." t nil)
  6770.  
  6771. ;;;***
  6772.  
  6773. ;;;### (autoloads (tabify untabify) "tabify" "prim/tabify.el" (12211 28161))
  6774. ;;; Generated autoloads from prim/tabify.el
  6775.  
  6776. (autoload 'untabify "tabify" "\
  6777. Convert all tabs in region to multiple spaces, preserving columns.
  6778. Called non-interactively, the region is specified by arguments
  6779. START and END, rather than by the position of point and mark.
  6780. The variable `tab-width' controls the spacing of tab stops." t nil)
  6781.  
  6782. (autoload 'tabify "tabify" "\
  6783. Convert multiple spaces in region to tabs when possible.
  6784. A group of spaces is partially replaced by tabs
  6785. when this can be done without changing the column they end at.
  6786. Called non-interactively, the region is specified by arguments
  6787. START and END, rather than by the position of point and mark.
  6788. The variable `tab-width' controls the spacing of tab stops." t nil)
  6789.  
  6790. ;;;***
  6791.  
  6792. ;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock) "userlock" "prim/userlock.el" (12276 29819))
  6793. ;;; Generated autoloads from prim/userlock.el
  6794.  
  6795. (autoload 'ask-user-about-lock "userlock" "\
  6796. Ask user what to do when he wants to edit FILE but it is locked by USER.
  6797. This function has a choice of three things to do:
  6798.   do (signal 'buffer-file-locked (list FILE USER))
  6799.     to refrain from editing the file
  6800.   return t (grab the lock on the file)
  6801.   return nil (edit the file even though it is locked).
  6802. You can rewrite it to use any criterion you like to choose which one to do." nil nil)
  6803.  
  6804. (autoload 'ask-user-about-supersession-threat "userlock" "\
  6805. Ask a user who is about to modify an obsolete buffer what to do.
  6806. This function has two choices: it can return, in which case the modification
  6807. of the buffer will proceed, or it can (signal 'file-supersession (file)),
  6808. in which case the proposed buffer modification will not be made.
  6809.  
  6810. You can rewrite this to use any criterion you like to choose which one to do.
  6811. The buffer in question is current when this function is called." nil nil)
  6812.  
  6813. ;;;***
  6814.  
  6815. ;;;### (autoloads (rmail-input rmail-mode rmail) "rmail" "rmail/rmail.el" (12316 62357))
  6816. ;;; Generated autoloads from rmail/rmail.el
  6817.  
  6818. (defvar rmail-dont-reply-to-names nil "\
  6819. *A regexp specifying names to prune of reply to messages.
  6820. A value of nil means exclude your own name only.")
  6821.  
  6822. (defvar rmail-default-dont-reply-to-names "info-" "\
  6823. A regular expression specifying part of the value of the default value of
  6824. the variable `rmail-dont-reply-to-names', for when the user does not set
  6825. `rmail-dont-reply-to-names' explicitly.  (The other part of the default
  6826. value is the user's name.)
  6827. It is useful to set this variable in the site customization file.")
  6828.  
  6829. (defvar rmail-delete-after-output nil "\
  6830. *Non-nil means automatically delete a message that is copied to a file.")
  6831.  
  6832. (defvar rmail-primary-inbox-list nil "\
  6833. *List of files which are inboxes for user's primary mail file `~/RMAIL'.
  6834. `nil' means the default, which is (\"/usr/spool/mail/$USER\")
  6835. \(the name varies depending on the operating system,
  6836. and the value of the environment variable MAIL overrides it).")
  6837.  
  6838. (defvar rmail-mail-new-frame nil "\
  6839. *Non-nil means Rmail makes a new frame for composing outgoing mail.")
  6840.  
  6841. (defvar rmail-retry-setup-hook nil "\
  6842. Hook that `rmail-retry-failure' uses in place of `mail-setup-hook'.")
  6843.  
  6844. (autoload 'rmail "rmail" "\
  6845. Read and edit incoming mail.
  6846. Moves messages into file named by `rmail-file-name' (a babyl format file)
  6847.  and edits that file in RMAIL Mode.
  6848. Type \\[describe-mode] once editing that file, for a list of RMAIL commands.
  6849.  
  6850. May be called with filename as argument; then performs rmail editing on
  6851. that file, but does not copy any new mail into the file." t nil)
  6852.  
  6853. (autoload 'rmail-mode "rmail" "\
  6854. Rmail Mode is used by \\<rmail-mode-map>\\[rmail] for editing Rmail files.
  6855. All normal editing commands are turned off.
  6856. Instead, these commands are available:
  6857.  
  6858. \\[rmail-beginning-of-message]    Move point to front of this message (same as \\[beginning-of-buffer]).
  6859. \\[scroll-up]    Scroll to next screen of this message.
  6860. \\[scroll-down]    Scroll to previous screen of this message.
  6861. \\[rmail-next-undeleted-message]    Move to Next non-deleted message.
  6862. \\[rmail-previous-undeleted-message]    Move to Previous non-deleted message.
  6863. \\[rmail-next-message]    Move to Next message whether deleted or not.
  6864. \\[rmail-previous-message]    Move to Previous message whether deleted or not.
  6865. \\[rmail-first-message]    Move to the first message in Rmail file.
  6866. \\[rmail-last-message]    Move to the last message in Rmail file.
  6867. \\[rmail-show-message]    Jump to message specified by numeric position in file.
  6868. \\[rmail-search]    Search for string and show message it is found in.
  6869. \\[rmail-delete-forward]    Delete this message, move to next nondeleted.
  6870. \\[rmail-delete-backward]    Delete this message, move to previous nondeleted.
  6871. \\[rmail-undelete-previous-message]    Undelete message.  Tries current message, then earlier messages
  6872.     till a deleted message is found.
  6873. \\[rmail-edit-current-message]    Edit the current message.  \\[rmail-cease-edit] to return to Rmail.
  6874. \\[rmail-expunge]    Expunge deleted messages.
  6875. \\[rmail-expunge-and-save]    Expunge and save the file.
  6876. \\[rmail-quit]       Quit Rmail: expunge, save, then switch to another buffer.
  6877. \\[save-buffer] Save without expunging.
  6878. \\[rmail-get-new-mail]    Move new mail from system spool directory into this file.
  6879. \\[rmail-mail]    Mail a message (same as \\[mail-other-window]).
  6880. \\[rmail-continue]    Continue composing outgoing message started before.
  6881. \\[rmail-reply]    Reply to this message.  Like \\[rmail-mail] but initializes some fields.
  6882. \\[rmail-retry-failure]    Send this message again.  Used on a mailer failure message.
  6883. \\[rmail-forward]    Forward this message to another user.
  6884. \\[rmail-output-to-rmail-file]       Output this message to an Rmail file (append it).
  6885. \\[rmail-output]    Output this message to a Unix-format mail file (append it).
  6886. \\[rmail-input]    Input Rmail file.  Run Rmail on that file.
  6887. \\[rmail-add-label]    Add label to message.  It will be displayed in the mode line.
  6888. \\[rmail-kill-label]    Kill label.  Remove a label from current message.
  6889. \\[rmail-next-labeled-message]   Move to Next message with specified label
  6890.           (label defaults to last one specified).
  6891.           Standard labels: filed, unseen, answered, forwarded, deleted.
  6892.           Any other label is present only if you add it with \\[rmail-add-label].
  6893. \\[rmail-previous-labeled-message]   Move to Previous message with specified label
  6894. \\[rmail-summary]    Show headers buffer, with a one line summary of each message.
  6895. \\[rmail-summary-by-labels]    Summarize only messages with particular label(s).
  6896. \\[rmail-summary-by-recipients]   Summarize only messages with particular recipient(s).
  6897. \\[rmail-summary-by-regexp]   Summarize only messages with particular regexp(s).
  6898. \\[rmail-summary-by-topic]   Summarize only messages with subject line regexp(s).
  6899. \\[rmail-toggle-header]    Toggle display of complete header." t nil)
  6900.  
  6901. (autoload 'rmail-input "rmail" "\
  6902. Run Rmail on file FILENAME." t nil)
  6903.  
  6904. ;;;***
  6905.  
  6906. ;;;### (autoloads (rmail-file-p) "rmailout" "rmail/rmailout.el" (12211 28170))
  6907. ;;; Generated autoloads from rmail/rmailout.el
  6908.  
  6909. (autoload 'rmail-file-p "rmailout" nil nil nil)
  6910.  
  6911. ;;;***
  6912.  
  6913.  
  6914.  
  6915. ;;;### (autoloads (unrmail batch-unrmail) "unrmail" "rmail/unrmail.el" (12147 26547))
  6916. ;;; Generated autoloads from rmail/unrmail.el
  6917.  
  6918. (autoload 'batch-unrmail "unrmail" "\
  6919. Convert Rmail files to mailbox files.
  6920. Specify the input Rmail file names as command line arguments.
  6921. For each Rmail file, the corresponding output file name
  6922. is made by adding `.mail' at the end.
  6923. For example, invoke `emacs -batch -f batch-unrmail RMAIL'." nil nil)
  6924.  
  6925. (autoload 'unrmail "unrmail" "\
  6926. Convert Rmail file FILE to mailbox-format file TO-FILE." t nil)
  6927.  
  6928. ;;;***
  6929.  
  6930. ;;;### (autoloads (defadvice ad-add-advice) "advice" "utils/advice.el" (12147 26557))
  6931. ;;; Generated autoloads from utils/advice.el
  6932.  
  6933. (defvar ad-redefinition-action 'warn "\
  6934. *Defines what to do with redefinitions during Advice de/activation.
  6935. Redefinition occurs if a previously activated function that already has an
  6936. original definition associated with it gets redefined and then de/activated.
  6937. In such a case we can either accept the current definition as the new
  6938. original definition, discard the current definition and replace it with the
  6939. old original, or keep it and raise an error.  The values `accept', `discard',
  6940. `error' or `warn' govern what will be done.  `warn' is just like `accept' but
  6941. it additionally prints a warning message.  All other values will be
  6942. interpreted as `error'.")
  6943.  
  6944. (defvar ad-default-compilation-action 'maybe "\
  6945. *Defines whether to compile advised definitions during activation.
  6946. A value of `always' will result in unconditional compilation, `never' will
  6947. always avoid compilation, `maybe' will compile if the byte-compiler is already
  6948. loaded, and `like-original' will compile if the original definition of the
  6949. advised function is compiled or a built-in function. Every other value will
  6950. be interpreted as `maybe'. This variable will only be considered if the 
  6951. COMPILE argument of `ad-activate' was supplied as nil.")
  6952.  
  6953. (autoload 'ad-add-advice "advice" "\
  6954. Adds a piece of ADVICE to FUNCTION's list of advices in CLASS.
  6955. If FUNCTION already has one or more pieces of advice of the specified
  6956. CLASS then POSITION determines where the new piece will go.  The value
  6957. of POSITION can either be `first', `last' or a number where 0 corresponds
  6958. to `first'.  Numbers outside the range will be mapped to the closest
  6959. extreme position.  If there was already a piece of ADVICE with the same
  6960. name, then the position argument will be ignored and the old advice
  6961. will be overwritten with the new one.
  6962.     If the FUNCTION was not advised already, then its advice info will be 
  6963. initialized.  Redefining a piece of advice whose name is part of the cache-id
  6964. will clear the cache." nil nil)
  6965.  
  6966. (autoload 'defadvice "advice" "\
  6967. Defines a piece of advice for FUNCTION (a symbol).
  6968. The syntax of `defadvice' is as follows:
  6969.  
  6970.   (defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...)
  6971.     [DOCSTRING] [INTERACTIVE-FORM]
  6972.     BODY... )
  6973.  
  6974. FUNCTION ::= Name of the function to be advised.
  6975. CLASS ::= `before' | `around' | `after' | `activation' | `deactivation'.
  6976. NAME ::= Non-nil symbol that names this piece of advice.
  6977. POSITION ::= `first' | `last' | NUMBER. Optional, defaults to `first',
  6978.     see also `ad-add-advice'.
  6979. ARGLIST ::= An optional argument list to be used for the advised function
  6980.     instead of the argument list of the original.  The first one found in
  6981.     before/around/after-advices will be used.
  6982. FLAG ::= `protect'|`disable'|`activate'|`compile'|`preactivate'|`freeze'.
  6983.     All flags can be specified with unambiguous initial substrings.
  6984. DOCSTRING ::= Optional documentation for this piece of advice.
  6985. INTERACTIVE-FORM ::= Optional interactive form to be used for the advised
  6986.     function.  The first one found in before/around/after-advices will be used.
  6987. BODY ::= Any s-expression.
  6988.  
  6989. Semantics of the various flags:
  6990. `protect': The piece of advice will be protected against non-local exits in
  6991. any code that precedes it.  If any around-advice of a function is protected
  6992. then automatically all around-advices will be protected (the complete onion).
  6993.  
  6994. `activate': All advice of FUNCTION will be activated immediately if
  6995. FUNCTION has been properly defined prior to this application of `defadvice'.
  6996.  
  6997. `compile': In conjunction with `activate' specifies that the resulting
  6998. advised function should be compiled.
  6999.  
  7000. `disable': The defined advice will be disabled, hence, it will not be used 
  7001. during activation until somebody enables it.
  7002.  
  7003. `preactivate': Preactivates the advised FUNCTION at macro-expansion/compile
  7004. time.  This generates a compiled advised definition according to the current
  7005. advice state that will be used during activation if appropriate.  Only use
  7006. this if the `defadvice' gets actually compiled.
  7007.  
  7008. `freeze': Expands the `defadvice' into a redefining `defun/defmacro' according
  7009. to this particular single advice.  No other advice information will be saved.
  7010. Frozen advices cannot be undone, they behave like a hard redefinition of
  7011. the advised function.  `freeze' implies `activate' and `preactivate'.  The
  7012. documentation of the advised function can be dumped onto the `DOC' file
  7013. during preloading.
  7014.  
  7015. Look at the file `advice.el' for comprehensive documentation." nil 'macro)
  7016.  
  7017. ;;;***
  7018.  
  7019. ;;;### (autoloads (batch-update-autoloads update-directory-autoloads update-autoloads-here update-file-autoloads) "autoload" "utils/autoload.el" (12263 29509))
  7020. ;;; Generated autoloads from utils/autoload.el
  7021.  
  7022. (autoload 'update-file-autoloads "autoload" "\
  7023. Update the autoloads for FILE in `generated-autoload-file'
  7024. \(which FILE might bind in its local variables)." t nil)
  7025.  
  7026. (autoload 'update-autoloads-here "autoload" "\
  7027. Update sections of the current buffer generated by \\[update-file-autoloads]." t nil)
  7028.  
  7029. (autoload 'update-directory-autoloads "autoload" "\
  7030. Run \\[update-file-autoloads] on each .el file in DIR." t nil)
  7031.  
  7032. (autoload 'batch-update-autoloads "autoload" "\
  7033. Update the autoloads for the files or directories on the command line.
  7034. Runs \\[update-file-autoloads] on files and \\[update-directory-autoloads]
  7035. on directories.  Must be used only with -batch, and kills Emacs on completion.
  7036. Each file will be processed even if an error occurred previously.
  7037. For example, invoke `emacs -batch -f batch-update-autoloads *.el'." nil nil)
  7038.  
  7039. ;;;***
  7040.  
  7041. ;;;### (autoloads (derived-mode-init-mode-variables define-derived-mode) "derived" "utils/derived.el" (12212 10585))
  7042. ;;; Generated autoloads from utils/derived.el
  7043.  
  7044. (autoload 'define-derived-mode "derived" "\
  7045. Create a new mode as a variant of an existing mode.
  7046.  
  7047. The arguments to this command are as follow:
  7048.  
  7049. PARENT:    the name of the command for the parent mode (ie. text-mode).
  7050. CHILD:     the name of the command for the derived mode.
  7051. NAME:      a string which will appear in the status line (ie. \"Hypertext\")
  7052. DOCSTRING: an optional documentation string--if you do not supply one,
  7053.            the function will attempt to invent something useful.
  7054. BODY:      forms to execute just before running the
  7055.            hooks for the new mode.
  7056.  
  7057. Here is how you could define LaTeX-Thesis mode as a variant of LaTeX mode:
  7058.  
  7059.   (define-derived-mode LaTeX-thesis-mode LaTeX-mode \"LaTeX-Thesis\")
  7060.  
  7061. You could then make new key bindings for `LaTeX-thesis-mode-map'
  7062. without changing regular LaTeX mode.  In this example, BODY is empty,
  7063. and DOCSTRING is generated by default.
  7064.  
  7065. On a more complicated level, the following command uses sgml-mode as
  7066. the parent, and then sets the variable `case-fold-search' to nil:
  7067.  
  7068.   (define-derived-mode article-mode sgml-mode \"Article\"
  7069.     \"Major mode for editing technical articles.\"
  7070.     (setq case-fold-search nil))
  7071.  
  7072. Note that if the documentation string had been left out, it would have
  7073. been generated automatically, with a reference to the keymap." nil 'macro)
  7074.  
  7075. (autoload 'derived-mode-init-mode-variables "derived" "\
  7076. Initialise variables for a new mode. 
  7077. Right now, if they don't already exist, set up a blank keymap, an
  7078. empty syntax table, and an empty abbrev table -- these will be merged
  7079. the first time the mode is used." nil nil)
  7080.  
  7081. ;;;***
  7082.  
  7083. ;;;### (autoloads (docref-setup) "docref" "utils/docref.el" (12318 21705))
  7084. ;;; Generated autoloads from utils/docref.el
  7085.  
  7086. (autoload 'docref-setup "docref" "\
  7087. Process docref cross-references in the current buffer.
  7088. See also \\(f@docref-subst)." t nil)
  7089.  
  7090. ;;;***
  7091.  
  7092. ;;;### (autoloads (easy-menu-define) "easymenu" "utils/easymenu.el" (12285 55569))
  7093. ;;; Generated autoloads from utils/easymenu.el
  7094.  
  7095. (autoload 'easy-menu-define "easymenu" "\
  7096. Define a menu bar submenu in maps MAPS, according to MENU.
  7097. The arguments SYMBOL and DOC are ignored; they are present for
  7098. compatibility only.  SYMBOL is not evaluated.  In other Emacs versions
  7099. these arguments may be used as a variable to hold the menu data, and a
  7100. doc string for that variable.
  7101.  
  7102. The first element of MENU must be a string.  It is the menu bar item name.
  7103. The rest of the elements are menu items.
  7104.  
  7105. A menu item is usually a vector of three elements:  [NAME CALLBACK ENABLE]
  7106.  
  7107. NAME is a string--the menu item name.
  7108.  
  7109. CALLBACK is a command to run when the item is chosen,
  7110. or a list to evaluate when the item is chosen.
  7111.  
  7112. ENABLE is an expression; the item is enabled for selection
  7113. whenever this expression's value is non-nil.
  7114.  
  7115. Alternatively, a menu item may have the form: 
  7116.  
  7117.    [ NAME CALLBACK [ KEYWORD ARG ] ... ]
  7118.  
  7119. Where KEYWORD is one of the symbol defined below.
  7120.  
  7121.    :keys KEYS
  7122.  
  7123. KEYS is a string; a complex keyboard equivalent to this menu item.
  7124.  
  7125.    :active ENABLE
  7126.  
  7127. ENABLE is an expression; the item is enabled for selection
  7128. whenever this expression's value is non-nil.
  7129.  
  7130.    :suffix NAME
  7131.  
  7132. NAME is a string; the name of an argument to CALLBACK.
  7133.  
  7134.    :style STYLE
  7135.    
  7136. STYLE is a symbol describing the type of menu item.  The following are
  7137. defined:  
  7138.  
  7139. toggle: A checkbox.  
  7140.         Currently just prepend the name with the string \"Toggle \".
  7141. radio: A radio button. 
  7142. nil: An ordinary menu item.
  7143.  
  7144.    :selected SELECTED
  7145.  
  7146. SELECTED is an expression; the checkbox or radio button is selected
  7147. whenever this expression's value is non-nil.
  7148. Currently just disable radio buttons, no effect on checkboxes.
  7149.  
  7150. A menu item can be a string.  Then that string appears in the menu as
  7151. unselectable text.  A string consisting solely of hyphens is displayed
  7152. as a solid horizontal line.
  7153.  
  7154. A menu item can be a list.  It is treated as a submenu.
  7155. The first element should be the submenu name.  That's used as the
  7156. menu item in the top-level menu.  The cdr of the submenu list
  7157. is a list of menu items, as above." nil 'macro)
  7158.  
  7159. ;;;***
  7160.  
  7161. ;;;### (autoloads (elp-submit-bug-report elp-results elp-instrument-package elp-instrument-list elp-restore-function elp-instrument-function) "elp" "utils/elp.el" (12294 55518))
  7162. ;;; Generated autoloads from utils/elp.el
  7163.  
  7164. (autoload 'elp-instrument-function "elp" "\
  7165. Instrument FUNSYM for profiling.
  7166. FUNSYM must be a symbol of a defined function." t nil)
  7167.  
  7168. (autoload 'elp-restore-function "elp" "\
  7169. Restore an instrumented function to its original definition.
  7170. Argument FUNSYM is the symbol of a defined function." t nil)
  7171.  
  7172. (autoload 'elp-instrument-list "elp" "\
  7173. Instrument for profiling, all functions in `elp-function-list'.
  7174. Use optional LIST if provided instead." t nil)
  7175.  
  7176. (autoload 'elp-instrument-package "elp" "\
  7177. Instrument for profiling, all functions which start with PREFIX.
  7178. For example, to instrument all ELP functions, do the following:
  7179.  
  7180.     \\[elp-instrument-package] RET elp- RET" t nil)
  7181.  
  7182. (autoload 'elp-results "elp" "\
  7183. Display current profiling results.
  7184. If `elp-reset-after-results' is non-nil, then current profiling
  7185. information for all instrumented functions are reset after results are
  7186. displayed." t nil)
  7187.  
  7188. (autoload 'elp-submit-bug-report "elp" "\
  7189. Submit via mail, a bug report on elp." t nil)
  7190.  
  7191. ;;;***
  7192.  
  7193. ;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl" "utils/flow-ctrl.el" (12147 26574))
  7194. ;;; Generated autoloads from utils/flow-ctrl.el
  7195.  
  7196. (autoload 'enable-flow-control "flow-ctrl" "\
  7197. Toggle flow control handling.
  7198. When handling is enabled, user can type C-s as C-\\, and C-q as C-^.
  7199. With arg, enable flow control mode if arg is positive, otherwise disable." t nil)
  7200.  
  7201. (autoload 'enable-flow-control-on "flow-ctrl" "\
  7202. Enable flow control if using one of a specified set of terminal types.
  7203. Use `(enable-flow-control-on \"vt100\" \"h19\")' to enable flow control
  7204. on VT-100 and H19 terminals.  When flow control is enabled,
  7205. you must type C-\\ to get the effect of a C-s, and type C-^
  7206. to get the effect of a C-q." nil nil)
  7207.  
  7208. ;;;***
  7209.  
  7210. ;;;### (autoloads (forms-find-file-other-window forms-find-file forms-mode) "forms" "utils/forms.el" (12178 29474))
  7211. ;;; Generated autoloads from utils/forms.el
  7212.  
  7213. (autoload 'forms-mode "forms" "\
  7214. Major mode to visit files in a field-structured manner using a form.
  7215.  
  7216. Commands:                        Equivalent keys in read-only mode:
  7217.  
  7218.  TAB          forms-next-field           TAB
  7219.  C-c TAB      forms-next-field
  7220.  C-c <        forms-first-record         <
  7221.  C-c >        forms-last-record          >
  7222.  C-c ?        describe-mode              ?
  7223.  C-c C-k      forms-delete-record
  7224.  C-c C-q      forms-toggle-read-only     q
  7225.  C-c C-o      forms-insert-record
  7226.  C-c C-l      forms-jump-record          l
  7227.  C-c C-n      forms-next-record          n
  7228.  C-c C-p      forms-prev-record          p
  7229.  C-c C-s      forms-search               s
  7230.  C-c C-x      forms-exit                 x" t nil)
  7231.  
  7232. (autoload 'forms-find-file "forms" "\
  7233. Visit a file in Forms mode." t nil)
  7234.  
  7235. (autoload 'forms-find-file-other-window "forms" "\
  7236. Visit a file in Forms mode in other window." t nil)
  7237.  
  7238. ;;;***
  7239.  
  7240. ;;;### (autoloads (highlight-headers) "highlight-headers" "utils/highlight-headers.el" (12341 174))
  7241. ;;; Generated autoloads from utils/highlight-headers.el
  7242.  
  7243. (autoload 'highlight-headers "highlight-headers" "\
  7244. Highlight message headers between start and end.
  7245. Faces used:
  7246.   message-headers            the part before the colon
  7247.   message-header-contents        the part after the colon
  7248.   message-highlighted-header-contents    contents of \"special\" headers
  7249.   message-cited-text            quoted text from other messages
  7250.  
  7251. Variables used:
  7252.  
  7253.   highlight-headers-regexp            what makes a \"special\" header
  7254.   highlight-headers-citation-regexp        matches lines of quoted text
  7255.   highlight-headers-citation-header-regexp    matches headers for quoted text
  7256.  
  7257. If HACK-SIG is true,then we search backward from END for something that
  7258. looks like the beginning of a signature block, and don't consider that a
  7259. part of the message (this is because signatures are often incorrectly
  7260. interpreted as cited text.)" nil nil)
  7261.  
  7262. ;;;***
  7263.  
  7264. ;;;### (autoloads (unload-feature) "loadhist" "utils/loadhist.el" (12190 24394))
  7265. ;;; Generated autoloads from utils/loadhist.el
  7266.  
  7267. (autoload 'unload-feature "loadhist" "\
  7268. Unload the library that provided FEATURE, restoring all its autoloads.
  7269. If the feature is required by any other loaded code, and optional FORCE
  7270. is nil, raise an error." t nil)
  7271.  
  7272. ;;;***
  7273.  
  7274. ;;;### (autoloads (what-domain mail-extract-address-components) "mail-extr" "utils/mail-extr.el" (12147 26562))
  7275. ;;; Generated autoloads from utils/mail-extr.el
  7276.  
  7277. (autoload 'mail-extract-address-components "mail-extr" "\
  7278. Given an RFC-822 ADDRESS, extract full name and canonical address.
  7279. Returns a list of the form (FULL-NAME CANONICAL-ADDRESS).
  7280. If no name can be extracted, FULL-NAME will be nil.
  7281. ADDRESS may be a string or a buffer.  If it is a buffer, the visible 
  7282.  (narrowed) portion of the buffer will be interpreted as the address.
  7283.  (This feature exists so that the clever caller might be able to avoid
  7284.  consing a string.)
  7285. If ADDRESS contains more than one RFC-822 address, only the first is
  7286.  returned.  Some day this function may be extended to extract multiple
  7287.  addresses, or perhaps return the position at which parsing stopped." nil nil)
  7288.  
  7289. (autoload 'what-domain "mail-extr" "\
  7290. Prompts for a mail domain, and prints the country it corresponds to
  7291. in the minibuffer." t nil)
  7292.  
  7293. ;;;***
  7294.  
  7295. ;;;### (autoloads nil "mail-utils" "utils/mail-utils.el" (12331 54428))
  7296. ;;; Generated autoloads from utils/mail-utils.el
  7297.  
  7298. (defvar mail-use-rfc822 nil "\
  7299. *If non-nil, use a full, hairy RFC822 parser on mail addresses.
  7300. Otherwise, (the default) use a smaller, somewhat faster and
  7301. often-correct parser.")
  7302.  
  7303. ;;;***
  7304.  
  7305. ;;;### (autoloads (map-y-or-n-p) "map-ynp" "utils/map-ynp.el" (12178 29470))
  7306. ;;; Generated autoloads from utils/map-ynp.el
  7307.  
  7308. (autoload 'map-y-or-n-p "map-ynp" "\
  7309. Ask a series of boolean questions.
  7310. Takes args PROMPTER ACTOR LIST, and optional arg HELP.
  7311.  
  7312. LIST is a list of objects, or a function of no arguments to return the next
  7313. object or nil.
  7314.  
  7315. If PROMPTER is a string, the prompt is (format PROMPTER OBJECT).  If not
  7316. a string, PROMPTER is a function of one arg (an object from LIST), which
  7317. returns a string to be used as the prompt for that object.  If the return
  7318. value is not a string, it is eval'd to get the answer; it may be nil to
  7319. ignore the object, t to act on the object without asking the user, or a
  7320. form to do a more complex prompt.
  7321.  
  7322.  
  7323. ACTOR is a function of one arg (an object from LIST),
  7324. which gets called with each object that the user answers `yes' for.
  7325.  
  7326. If HELP is given, it is a list (OBJECT OBJECTS ACTION),
  7327. where OBJECT is a string giving the singular noun for an elt of LIST;
  7328. OBJECTS is the plural noun for elts of LIST, and ACTION is a transitive
  7329. verb describing ACTOR.  The default is (\"object\" \"objects\" \"act on\").
  7330.  
  7331. At the prompts, the user may enter y, Y, or SPC to act on that object;
  7332. n, N, or DEL to skip that object; ! to act on all following objects;
  7333. ESC or q to exit (skip all following objects); . (period) to act on the
  7334. current object and then exit; or \\[help-command] to get help.
  7335.  
  7336. Returns the number of actions taken." nil nil)
  7337.  
  7338. ;;;***
  7339.  
  7340. ;;;### (autoloads (read-passwd) "passwd" "utils/passwd.el" (12327 53736))
  7341. ;;; Generated autoloads from utils/passwd.el
  7342.  
  7343. (autoload 'read-passwd "passwd" "\
  7344. Prompts for a password in the minibuffer, and returns it as a string.
  7345. If PROMPT may be a prompt string or an alist of elements 
  7346. '(prompt . default).
  7347. If optional arg CONFIRM is true, then ask the user to type the password
  7348. again to confirm that they typed it correctly.
  7349. If optional arg DEFAULT is provided, then it is a string to insert as
  7350. the default choice (it is not, of course, displayed.)
  7351.  
  7352. If running under X, the keyboard will be grabbed (with XGrabKeyboard())
  7353. to reduce the possibility that evesdropping is occuring.
  7354.  
  7355. When reading a password, all keys self-insert, except for:
  7356. \\<read-passwd-map>
  7357.     \\[read-passwd-erase-line]    Erase the entire line.
  7358.     \\[quoted-insert]    Insert the next character literally.
  7359.     \\[delete-backward-char]    Delete the previous character.
  7360.     \\[exit-minibuffer]    Accept what you have typed.
  7361.     \\[keyboard-quit]    Abort the command.
  7362.  
  7363. The returned value is always a newly-created string.  No additional copies
  7364. of the password remain after this function has returned.
  7365.  
  7366. NOTE: unless great care is taken, the typed password will exist in plaintext
  7367. form in the running image for an arbitrarily long time.  Priveleged users may
  7368. be able to extract it from memory.  If emacs crashes, it may appear in the
  7369. resultant core file.
  7370.  
  7371. Some steps you can take to prevent the password from being copied around:
  7372.  
  7373.  - as soon as you are done with the returned string, destroy it with
  7374.    (fillarray string 0).  The same goes for any default passwords
  7375.    or password histories.
  7376.  
  7377.  - do not copy the string, as with concat or substring - if you do, be
  7378.    sure to keep track of and destroy all copies.
  7379.  
  7380.  - do not insert the password into a buffer - if you do, be sure to 
  7381.    overwrite the buffer text before killing it, as with the functions 
  7382.    `passwd-erase-buffer' or `passwd-kill-buffer'.  Note that deleting
  7383.    the text from the buffer does NOT necessarily remove the text from
  7384.    memory.
  7385.  
  7386.  - be careful of the undo history - if you insert the password into a 
  7387.    buffer which has undo recording turned on, the password will be 
  7388.    copied onto the undo list, and thus recoverable.
  7389.  
  7390.  - do not pass it as an argument to a shell command - anyone will be
  7391.    able to see it if they run `ps' at the right time.
  7392.  
  7393. Note that the password will be temporarily recoverable with the `view-lossage'
  7394. command.  This data will not be overwritten until another hundred or so 
  7395. characters are typed.  There's not currently a way around this." nil nil)
  7396.  
  7397. ;;;***
  7398.  
  7399. ;;;### (autoloads (pp) "pp" "utils/pp.el" (12293 21657))
  7400. ;;; Generated autoloads from utils/pp.el
  7401.  
  7402. (autoload 'pp "pp" "\
  7403. Output the pretty-printed representation of OBJECT, any Lisp object.
  7404. Quoting characters are printed when needed to make output that `read'
  7405. can handle, whenever this is possible.
  7406. Output stream is STREAM, or value of `standard-output' (which see)." nil nil)
  7407.  
  7408. (defalias 'pprint 'pp)
  7409.  
  7410. ;;;***
  7411.  
  7412. ;;;### (autoloads (reporter-submit-bug-report) "reporter" "utils/reporter.el" (12220 43139))
  7413. ;;; Generated autoloads from utils/reporter.el
  7414.  
  7415. (autoload 'reporter-submit-bug-report "reporter" nil nil nil)
  7416.  
  7417. ;;;***
  7418.  
  7419. ;;;### (autoloads (previous-property-change next-property-change text-property-not-all text-property-any text-properties-at extent-properties-at get-text-property) "text-props" "utils/text-props.el" (12356 62992))
  7420. ;;; Generated autoloads from utils/text-props.el
  7421.  
  7422. (autoload 'get-text-property "text-props" "\
  7423. Returns the value of the PROP property at the given position." nil nil)
  7424.  
  7425. (autoload 'extent-properties-at "text-props" "\
  7426. Returns the properties of the character at the given position,
  7427. by merging the properties of overlapping extents.  The returned value
  7428. is a property list, some of which may be shared with other structures.
  7429. You must not modify it.
  7430.  
  7431. This returns all properties on all extents." nil nil)
  7432.  
  7433. (autoload 'text-properties-at "text-props" "\
  7434. Returns the properties of the character at the given position,
  7435. by merging the properties of overlapping extents.  The returned value
  7436. is a property list, some of which may be shared with other structures.
  7437. You must not modify it.
  7438.  
  7439. This returns only those properties added with `put-text-property'.
  7440. See also `extent-properties-at'." nil nil)
  7441.  
  7442. (autoload 'text-property-any "text-props" "\
  7443. Check text from START to END to see if PROP is ever `eq' to VALUE.
  7444. If so, return the position of the first character whose PROP is `eq'
  7445. to VALUE.  Otherwise return nil.
  7446. The optional fifth argument, OBJECT, is the buffer containing the text." nil nil)
  7447.  
  7448. (autoload 'text-property-not-all "text-props" "\
  7449. Check text from START to END to see if PROP is ever not `eq' to VALUE.
  7450. If so, return the position of the first character whose PROP is not
  7451. `eq' to VALUE.  Otherwise, return nil.
  7452. The optional fifth argument, OBJECT, is the buffer containing the text." nil nil)
  7453.  
  7454. (autoload 'next-property-change "text-props" "\
  7455. Return the position of next property change.
  7456. Scans forward from POS in BUFFER (defaults to the current buffer) until
  7457.  it finds a change in some text property, then returns the position of
  7458.  the change.
  7459. Returns nil if the properties remain unchanged all the way to the end.
  7460. If the value is non-nil, it is a position greater than POS, never equal.
  7461. If the optional third argument LIMIT is non-nil, don't search
  7462.  past position LIMIT; return LIMIT if nothing is found before LIMIT.
  7463. If two or more extents with conflicting non-nil values for a property overlap
  7464.  a particular character, it is undefined which value is considered to be
  7465.  the value of the property. (Note that this situation will not happen if
  7466.  you always use the text-property primitives.)" nil nil)
  7467.  
  7468. (autoload 'previous-property-change "text-props" "\
  7469. Return the position of previous property change.
  7470. Scans backward from POS in BUFFER (defaults to the current buffer) until
  7471.  it finds a change in some text property, then returns the position of
  7472.  the change.
  7473. Returns nil if the properties remain unchanged all the way to the beginning.
  7474. If the value is non-nil, it is a position less than POS, never equal.
  7475. If the optional third argument LIMIT is non-nil, don't search back
  7476.  past position LIMIT; return LIMIT if nothing is found until LIMIT.
  7477. If two or more extents with conflicting non-nil values for a property overlap
  7478.  a particular character, it is undefined which value is considered to be
  7479.  the value of the property. (Note that this situation will not happen if
  7480.  you always use the text-property primitives.)" nil nil)
  7481.  
  7482. ;;;***
  7483.  
  7484. ;;;### (autoloads (tq-create) "tq" "utils/tq.el" (12282 39215))
  7485. ;;; Generated autoloads from utils/tq.el
  7486.  
  7487. (autoload 'tq-create "tq" "\
  7488. Create and return a transaction queue communicating with PROCESS.
  7489. PROCESS should be a subprocess capable of sending and receiving
  7490. streams of bytes.  It may be a local process, or it may be connected
  7491. to a tcp server on another machine." nil nil)
  7492.  
  7493. ;;;***
  7494.  
  7495. ;;;### (autoloads (trace-function-background trace-function) "trace" "utils/trace.el" (12178 29474))
  7496. ;;; Generated autoloads from utils/trace.el
  7497.  
  7498. (defvar trace-buffer "*trace-output*" "\
  7499. *Trace output will by default go to that buffer.")
  7500.  
  7501. (autoload 'trace-function "trace" "\
  7502. Traces FUNCTION with trace output going to BUFFER.
  7503. For every call of FUNCTION Lisp-style trace messages that display argument
  7504. and return values will be inserted into BUFFER. This function generates the
  7505. trace advice for FUNCTION and activates it together with any other advice
  7506. there might be!! The trace BUFFER will popup whenever FUNCTION is called.
  7507. Do not use this to trace functions that switch buffers or do any other
  7508. display oriented stuff, use `trace-function-background' instead." t nil)
  7509.  
  7510. (autoload 'trace-function-background "trace" "\
  7511. Traces FUNCTION with trace output going quietly to BUFFER.
  7512. For every call of FUNCTION Lisp-style trace messages that display argument
  7513. and return values will be inserted into BUFFER. This function generates the
  7514. trace advice for FUNCTION and activates it together with any other advice
  7515. there might be!! Trace output will quietly go to BUFFER without changing
  7516. the window or buffer configuration at all." t nil)
  7517.  
  7518. ;;;***
  7519.  
  7520. ;;;### (autoloads (y-or-n-p-with-timeout yes-or-no-p-with-timeout with-timeout with-timeout-internal) "with-timeout" "utils/with-timeout.el" (12178 29471))
  7521. ;;; Generated autoloads from utils/with-timeout.el
  7522.  
  7523. (autoload 'with-timeout-internal "with-timeout" nil nil nil)
  7524.  
  7525. (autoload 'with-timeout "with-timeout" "\
  7526. Usage: (with-timeout (seconds &rest timeout-forms) &rest body)
  7527. This is just like progn, but if the given number of seconds expires before
  7528. the body returns, then timeout-forms are evaluated and returned instead.
  7529. The body won't be interrupted in the middle of a computation: the check for 
  7530. the timer expiration only occurs when body does a redisplay, or prompts the
  7531. user for input, or calls accept-process-output." nil 'macro)
  7532.  
  7533. (autoload 'yes-or-no-p-with-timeout "with-timeout" "\
  7534. Just like yes-or-no-p, but will time out after TIMEOUT seconds
  7535. if the user has not yes answered, returning DEFAULT-VALUE." nil nil)
  7536.  
  7537. (autoload 'y-or-n-p-with-timeout "with-timeout" "\
  7538. Just like y-or-n-p, but will time out after TIMEOUT seconds
  7539. if the user has not yes answered, returning DEFAULT-VALUE." nil nil)
  7540.  
  7541. ;;;***
  7542.  
  7543. ;;;### (autoloads (viper-mode) "viper" "viper/viper.el" (12331 54490))
  7544. ;;; Generated autoloads from viper/viper.el
  7545.  
  7546. (autoload 'viper-mode "viper" "\
  7547. Turn on Viper emulation of Vi." t nil)
  7548.  
  7549. (defalias 'vip-mode 'viper-mode)
  7550.  
  7551. ;;;***
  7552.  
  7553. ;;;### (autoloads (vm-easy-menu-create-keymaps vm-easy-menu-define) "vm-easymenu" "vm/vm-easymenu.el" (12312 61359))
  7554. ;;; Generated autoloads from vm/vm-easymenu.el
  7555.  
  7556. (autoload 'vm-easy-menu-define "vm-easymenu" "\
  7557. Define a menu bar submenu in maps MAPS, according to MENU.
  7558. The menu keymap is stored in symbol SYMBOL, both as its value
  7559. and as its function definition.   DOC is used as the doc string for SYMBOL.
  7560.  
  7561. The first element of MENU must be a string.  It is the menu bar item name.
  7562. The rest of the elements are menu items.
  7563.  
  7564. A menu item is usually a vector of three elements:  [NAME CALLBACK ENABLE]
  7565.  
  7566. NAME is a string--the menu item name.
  7567.  
  7568. CALLBACK is a command to run when the item is chosen,
  7569. or a list to evaluate when the item is chosen.
  7570.  
  7571. ENABLE is an expression; the item is enabled for selection
  7572. whenever this expression's value is non-nil.
  7573.  
  7574. Alternatively, a menu item may have the form: 
  7575.  
  7576.    [ NAME CALLBACK [ KEYWORD ARG ] ... ]
  7577.  
  7578. Where KEYWORD is one of the symbol defined below.
  7579.  
  7580.    :keys KEYS
  7581.  
  7582. KEYS is a string; a complex keyboard equivalent to this menu item.
  7583. This is normally not needed because keyboard equivalents are usually
  7584. computed automatically.
  7585.  
  7586.    :active ENABLE
  7587.  
  7588. ENABLE is an expression; the item is enabled for selection
  7589. whenever this expression's value is non-nil.
  7590.  
  7591.    :suffix NAME
  7592.  
  7593. NAME is a string; the name of an argument to CALLBACK.
  7594.  
  7595.    :style 
  7596.    
  7597. STYLE is a symbol describing the type of menu item.  The following are
  7598. defined:  
  7599.  
  7600. toggle: A checkbox.  
  7601.         Currently just prepend the name with the string \"Toggle \".
  7602. radio: A radio button. 
  7603. nil: An ordinary menu item.
  7604.  
  7605.    :selected SELECTED
  7606.  
  7607. SELECTED is an expression; the checkbox or radio button is selected
  7608. whenever this expression's value is non-nil.
  7609. Currently just disable radio buttons, no effect on checkboxes.
  7610.  
  7611. A menu item can be a string.  Then that string appears in the menu as
  7612. unselectable text.  A string consisting solely of hyphens is displayed
  7613. as a solid horizontal line.
  7614.  
  7615. A menu item can be a list.  It is treated as a submenu.
  7616. The first element should be the submenu name.  That's used as the
  7617. menu item in the top-level menu.  The cdr of the submenu list
  7618. is a list of menu items, as above." nil 'macro)
  7619.  
  7620. (autoload 'vm-easy-menu-create-keymaps "vm-easymenu" nil nil nil)
  7621.  
  7622. ;;;***
  7623.  
  7624. ;;;### (autoloads (url-retrieve url-cache-expired url-popup-info url-get-url-at-point url-buffer-visiting url-normalize-url url-file-attributes) "url" "w3/url.el" (12357 57393))
  7625. ;;; Generated autoloads from w3/url.el
  7626.  
  7627. (autoload 'url-file-attributes "url" "\
  7628. Return a list of attributes of URL.
  7629. Value is nil if specified file cannot be opened.
  7630. Otherwise, list elements are:
  7631.  0. t for directory, string (name linked to) for symbolic link, or nil.
  7632.  1. Number of links to file.
  7633.  2. File uid.
  7634.  3. File gid.
  7635.  4. Last access time, as a list of two integers.
  7636.   First integer has high-order 16 bits of time, second has low 16 bits.
  7637.  5. Last modification time, likewise.
  7638.  6. Last status change time, likewise.
  7639.  7. Size in bytes. (-1, if number is out of range).
  7640.  8. File modes, as a string of ten letters or dashes as in ls -l.
  7641.     If URL is on an http server, this will return the content-type if possible.
  7642.  9. t iff file's gid would change if file were deleted and recreated.
  7643. 10. inode number.
  7644. 11. Device number.
  7645.  
  7646. If file does not exist, returns nil." nil nil)
  7647.  
  7648. (autoload 'url-normalize-url "url" "\
  7649. Return a 'normalized' version of URL.  This strips out default port
  7650. numbers, etc." nil nil)
  7651.  
  7652. (autoload 'url-buffer-visiting "url" "\
  7653. Return the name of a buffer (if any) that is visiting URL." nil nil)
  7654.  
  7655. (autoload 'url-get-url-at-point "url" "\
  7656. Get the URL closest to point, but don't change your
  7657. position. Has a preference for looking backward when not
  7658. directly on a symbol." nil nil)
  7659.  
  7660. (autoload 'url-popup-info "url" "\
  7661. Retrieve the HTTP/1.0 headers and display them in a temp buffer." nil nil)
  7662.  
  7663. (autoload 'url-cache-expired "url" "\
  7664. Return t iff a cached file has expired." nil nil)
  7665.  
  7666. (autoload 'url-retrieve "url" "\
  7667. Retrieve a document over the World Wide Web.
  7668. The document should be specified by its fully specified
  7669. Uniform Resource Locator.  No parsing is done, just return the
  7670. document as the server sent it.  The document is left in the
  7671. buffer specified by url-working-buffer.  url-working-buffer is killed
  7672. immediately before starting the transfer, so that no buffer-local
  7673. variables interfere with the retrieval.  HTTP/1.0 redirection will
  7674. be honored before this function exits." nil nil)
  7675.  
  7676. ;;;***
  7677.  
  7678. ;;;### (autoloads (w3-use-hotlist) "w3-hot" "w3/w3-hot.el" (12341 216))
  7679. ;;; Generated autoloads from w3/w3-hot.el
  7680.  
  7681. (autoload 'w3-use-hotlist "w3-hot" "\
  7682. Possibly go to a link in your W3/Mosaic hotlist.
  7683. This is part of the emacs World Wide Web browser.  It will prompt for
  7684. one of the items in your 'hotlist'.  A hotlist is a list of often
  7685. visited or interesting items you have found on the World Wide Web." t nil)
  7686.  
  7687. ;;;***
  7688.  
  7689. ;;;### (autoloads (w3-follow-link w3-follow-link-other-frame w3 w3-preview-this-buffer w3-batch-fetch w3-follow-url-at-point w3-follow-url-at-point-other-frame w3-maybe-follow-link w3-maybe-follow-link-mouse w3-fetch w3-fetch-other-frame w3-open-local) "w3" "w3/w3.el" (12357 57389))
  7690. ;;; Generated autoloads from w3/w3.el
  7691.  
  7692. (autoload 'w3-open-local "w3" "\
  7693. Find a local file, and interpret it as a hypertext document.
  7694. It will prompt for an existing file or directory, and retrieve it as a
  7695. hypertext document.  If it is a directory, and url-use-hypertext-dired
  7696. is non-nil, then an HTML directory listing is created on the fly.
  7697. Otherwise, dired-mode is used to visit the buffer." t nil)
  7698.  
  7699. (autoload 'w3-fetch-other-frame "w3" "\
  7700. Attempt to follow the hypertext reference under point in a new frame.
  7701. With prefix-arg P, ignore viewers and dump the link straight
  7702. to disk." t nil)
  7703.  
  7704. (autoload 'w3-fetch "w3" "\
  7705. Retrieve a document over the World Wide Web.
  7706. The World Wide Web is a global hypertext system started by CERN in
  7707. Switzerland in 1991.
  7708.  
  7709. The document should be specified by its fully specified
  7710. Uniform Resource Locator.  The document will be parsed, printed, or
  7711. passed to an external viewer as appropriate.  Variable
  7712. `mm-mime-info' specifies viewers for particular file types." t nil)
  7713.  
  7714. (autoload 'w3-maybe-follow-link-mouse "w3" "\
  7715. Maybe follow a hypertext link under point.
  7716. If there is no link under point, this will try using
  7717. url-get-url-at-point" t nil)
  7718.  
  7719. (autoload 'w3-maybe-follow-link "w3" "\
  7720. Maybe follow a hypertext link under point.
  7721. If there is no link under point, this will try using
  7722. url-get-url-at-point" t nil)
  7723.  
  7724. (autoload 'w3-follow-url-at-point-other-frame "w3" "\
  7725. Follow the URL under PT, defaults to link under (point)" t nil)
  7726.  
  7727. (autoload 'w3-follow-url-at-point "w3" "\
  7728. Follow the URL under PT, defaults to link under (point)" t nil)
  7729.  
  7730. (autoload 'w3-batch-fetch "w3" "\
  7731. Fetch all the URLs on the command line and save them to files in
  7732. the current directory.  The first argument after the -f w3-batch-fetch
  7733. on the command line should be a string specifying how to save the
  7734. information retrieved.  If it is \"html\", then the page will be
  7735. unformatted when it is written to disk.  If it is \"text\", then the
  7736. page will be formatted before it is written to disk.  If it is
  7737. \"binary\" it will not mess with the file extensions, and just save
  7738. the data in raw binary format.  If none of those, the default is
  7739. \"text\", and the first argument is treated as a normal URL." nil nil)
  7740.  
  7741. (autoload 'w3-preview-this-buffer "w3" "\
  7742. See what this buffer will look like when its formatted as HTML.
  7743. HTML is the HyperText Markup Language used by the World Wide Web to
  7744. specify formatting for text.  More information on HTML can be found at
  7745. ftp.w3.org:/pub/www/doc." t nil)
  7746.  
  7747. (autoload 'w3 "w3" "\
  7748. Retrieve the default World Wide Web home page.
  7749. The World Wide Web is a global hypertext system started by CERN in
  7750. Switzerland in 1991.
  7751.  
  7752. The home page is specified by the variable w3-default-homepage.  The
  7753. document should be specified by its fully specified Uniform Resource
  7754. Locator.  The document will be parsed as HTML (if appropriate) and
  7755. displayed in a new buffer." t nil)
  7756.  
  7757. (autoload 'w3-follow-link-other-frame "w3" "\
  7758. Attempt to follow the hypertext reference under point in a new frame.
  7759. With prefix-arg P, ignore viewers and dump the link straight
  7760. to disk." nil nil)
  7761.  
  7762. (autoload 'w3-follow-link "w3" "\
  7763. Attempt to follow the hypertext reference under point.
  7764. With prefix-arg P, ignore viewers and dump the link straight
  7765. to disk." t nil)
  7766.  
  7767. ;;;***
  7768.  
  7769. ;;;### (autoloads (font-menu-weight-constructor font-menu-size-constructor font-menu-family-constructor reset-device-font-menus) "x-font-menu" "x11/x-font-menu.el" (12274 51538))
  7770. ;;; Generated autoloads from x11/x-font-menu.el
  7771.  
  7772. (defvar font-menu-ignore-scaled-fonts t "\
  7773. *If non-nil, then the font menu will try to show only bitmap fonts.")
  7774.  
  7775. (defvar font-menu-this-frame-only-p t "\
  7776. *If non-nil, then changing the default font from the font menu will only
  7777. affect one frame instead of all frames.")
  7778.  
  7779. (fset 'install-font-menus 'reset-device-font-menus)
  7780.  
  7781. (autoload 'reset-device-font-menus "x-font-menu" "\
  7782. Generates the `Font', `Size', and `Weight' submenus for the Options menu.
  7783. This is run the first time that a font-menu is needed for each device.
  7784. If you don't like the lazy invocation of this function, you can add it to
  7785. `create-device-hook' and that will make the font menus respond more quickly
  7786. when they are selected for the first time.  If you add fonts to your system, 
  7787. or if you change your font path, you can call this to re-initialize the menus." nil nil)
  7788.  
  7789. (autoload 'font-menu-family-constructor "x-font-menu" nil nil nil)
  7790.  
  7791. (autoload 'font-menu-size-constructor "x-font-menu" nil nil nil)
  7792.  
  7793. (autoload 'font-menu-weight-constructor "x-font-menu" nil nil nil)
  7794.  
  7795. ;;;***
  7796.  
  7797. ;;; Don't make backup versions of this file - most of it is generated
  7798. ;;; automatically by autoload.el, and what isn't changes rarely.
  7799. ;;; Local Variables:
  7800. ;;; version-control: never
  7801. ;;; no-byte-compile: t
  7802. ;;; no-update-autoloads: t
  7803. ;;; End:
  7804. ;;; loaddefs.el ends here
  7805.